Massive spankage to capitalize C++ method and attribute name bindings, per

Architecture Item 6.3 (news://news.mozilla.org/37BA89CF.3823D6F9%40meer.net).


git-svn-id: svn://10.0.0.236/trunk@44456 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
brendan%mozilla.org
1999-08-25 05:26:25 +00:00
parent 5f7308878e
commit d87f3f7b04
35 changed files with 386 additions and 369 deletions

View File

@@ -51,7 +51,7 @@ nsFileSpecWithUIImpl::~nsFileSpecWithUIImpl()
}
//----------------------------------------------------------------------------------------
NS_IMETHODIMP nsFileSpecWithUIImpl::chooseOutputFile(
NS_IMETHODIMP nsFileSpecWithUIImpl::ChooseOutputFile(
const char *windowTitle,
const char *suggestedLeafName)
//----------------------------------------------------------------------------------------
@@ -74,19 +74,19 @@ NS_IMETHODIMP nsFileSpecWithUIImpl::chooseOutputFile(
return NS_FILE_FAILURE;
if (spec.Exists() && result != nsFileDlgResults_Replace)
return NS_FILE_FAILURE;
return mBaseFileSpec->setFromFileSpec(spec);
} // nsFileSpecImpl::chooseOutputFile
return mBaseFileSpec->SetFromFileSpec(spec);
} // nsFileSpecImpl::ChooseOutputFile
NS_IMETHODIMP nsFileSpecWithUIImpl::chooseFile(const char *title, char **_retval)
NS_IMETHODIMP nsFileSpecWithUIImpl::ChooseFile(const char *title, char **_retval)
{
nsresult rv = chooseInputFile(title, eAllFiles, nsnull, nsnull);
nsresult rv = ChooseInputFile(title, eAllFiles, nsnull, nsnull);
if (NS_FAILED(rv)) return rv;
rv = GetURLString(_retval);
return rv;
}
//----------------------------------------------------------------------------------------
NS_IMETHODIMP nsFileSpecWithUIImpl::chooseInputFile(
NS_IMETHODIMP nsFileSpecWithUIImpl::ChooseInputFile(
const char *inTitle,
nsIFileSpecWithUI::StandardFilterMask inMask,
const char *inExtraFilterTitle, const char *inExtraFilter)
@@ -156,16 +156,16 @@ NS_IMETHODIMP nsFileSpecWithUIImpl::chooseInputFile(
fileWidget->SetFilterList(nextFilter - filters, titles, filters);
if (fileWidget->GetFile(nsnull, inTitle, spec) != nsFileDlgResults_OK)
rv = NS_FILE_FAILURE;
rv = mBaseFileSpec->setFromFileSpec(spec);
rv = mBaseFileSpec->SetFromFileSpec(spec);
Clean:
delete [] titles;
delete [] filters;
return rv;
} // nsFileSpecWithUIImpl::chooseInputFile
} // nsFileSpecWithUIImpl::ChooseInputFile
//----------------------------------------------------------------------------------------
NS_IMETHODIMP nsFileSpecWithUIImpl::chooseDirectory(const char *title, char **_retval)
NS_IMETHODIMP nsFileSpecWithUIImpl::ChooseDirectory(const char *title, char **_retval)
//----------------------------------------------------------------------------------------
{
if (!mBaseFileSpec)