Adding a script to print out which of a given list of files do not end with a newline. Source files that do not end with a newline break at least the HP-UX compiler. Adding newlines to all of the source files found at this point.

git-svn-id: svn://10.0.0.236/trunk@64923 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org
2000-04-02 07:17:25 +00:00
parent a9a5cd5389
commit 4b879b15dd
52 changed files with 98 additions and 50 deletions

View File

@@ -70,4 +70,4 @@ nsresult nsCAppLoop::PlatformExit(PRInt32 exitCode)
PostQuitMessage(exitCode);
return NS_OK;
}
}

View File

@@ -100,4 +100,4 @@ NS_IMETHODIMP nsCEvent::SetNativeData(nsNativeEventDataType dataType,
return NS_OK;
}

View File

@@ -75,4 +75,4 @@ NS_IMETHODIMP nsCEventFilter::SetNativeData(nsNativeFilterDataType dataType,
nsCRT::memcpy(&m_filter, data, sizeof(m_filter));
return NS_OK;
}
}

View File

@@ -86,4 +86,4 @@ nsresult nsCPhEvent::ResizeEvent(unsigned long aEventSize)
NS_ENSURE_ARG_POINTER(m_msg);
return NS_OK;
}

View File

@@ -185,4 +185,4 @@ PRInt32 nsCPlatformBaseLoop::PlatformGetReturnCode(void* platformEventData)
#endif
return -1;
}
}

View File

@@ -59,4 +59,4 @@ nsresult nsCAppLoop::PlatformExit(PRInt32 exitCode)
{
PostQuitMessage(exitCode);
return NS_OK;
}
}

View File

@@ -77,4 +77,4 @@ nsresult nsCBreathLoop::PlatformRetrieveNextEvent(void* platformFilterData,
filter->wMsgFilterMax, filter->wRemoveFlags))
return NS_OK;
return NS_COMFALSE;
}
}

View File

@@ -177,4 +177,4 @@ NS_IMETHODIMP nsCEvent::SetPointY(PRInt32 aPointY)
{
m_msg.pt.y = aPointY;
return NS_OK;
}
}

View File

@@ -130,4 +130,4 @@ NS_IMETHODIMP nsCEventFilter::SetRemoveFlags(PRUint32 aRemoveFlags)
{
m_filter.wRemoveFlags = aRemoveFlags;
return NS_OK;
}
}

View File

@@ -129,4 +129,4 @@ nsresult nsCPlatformBaseLoop::PlatformRetrieveNextEvent(void* platformFilterData
filter->wMsgFilterMax))
return NS_OK;
return NS_COMFALSE;
}
}

View File

@@ -59,4 +59,4 @@ nsresult nsCThreadLoop::PlatformExit(PRInt32 exitCode)
{
::PostThreadMessage(m_WinThreadId, WM_QUIT, 0, 0);
return NS_OK;
}
}