oops, switch from char[] to char*
git-svn-id: svn://10.0.0.236/trunk@46731 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -46,7 +46,7 @@ public:
|
||||
NS_IMETHOD GetURLToLoad(char ** aResult);
|
||||
NS_IMETHOD GetProgramName(char ** aResult);
|
||||
NS_IMETHOD GetArgc(PRInt32 * aResult);
|
||||
NS_IMETHOD GetArgv(char ** aResult[]);
|
||||
NS_IMETHOD GetArgv(char *** aResult);
|
||||
|
||||
protected:
|
||||
virtual ~nsCmdLineService();
|
||||
@@ -230,7 +230,7 @@ nsCmdLineService::GetArgc(PRInt32 * aResult)
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsCmdLineService::GetArgv(char ** aResult[])
|
||||
nsCmdLineService::GetArgv(char *** aResult)
|
||||
{
|
||||
if (nsnull == aResult)
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
|
||||
Reference in New Issue
Block a user