mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 02:25:34 +00:00
change return type to void to avoid warnings.
This commit is contained in:
parent
098bf287ca
commit
4d5f8d4995
@ -106,7 +106,7 @@ nsInstallInfo::nsInstallInfo(nsVector* fromURL, const nsString& arguments, const
|
||||
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
nsInstallInfo::DeleteVector(nsVector* vector)
|
||||
{
|
||||
if (vector != nsnull)
|
||||
@ -145,6 +145,7 @@ nsInstallInfo::~nsInstallInfo()
|
||||
delete mFlags;
|
||||
}
|
||||
|
||||
void
|
||||
nsInstallInfo::MakeTempFile(nsString aURL, nsString& tempFileString)
|
||||
{
|
||||
// Checking to see if the url is local is a hack. I should see if
|
||||
|
@ -62,8 +62,9 @@ class nsInstallInfo
|
||||
PRBool IsMultipleTrigger();
|
||||
|
||||
private:
|
||||
DeleteVector(nsVector* vector);
|
||||
MakeTempFile(nsString aURL, nsString& tempFileString);
|
||||
|
||||
void DeleteVector(nsVector* vector);
|
||||
void MakeTempFile(nsString aURL, nsString& tempFileString);
|
||||
|
||||
nsString *mLocalFile;
|
||||
nsString *mFromURL;
|
||||
|
Loading…
Reference in New Issue
Block a user