summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authordennisroczek <dennisroczek@libreoffice.org>2017-03-13 23:30:45 +0000
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-03-19 05:43:51 +0000
commit7e24cedb9eaf68c2b95296bf6352f94e2a60532e (patch)
tree68d8e9540388fd02faa6312cd38a72e5b1736c31 /shell
parentde084e09cfbf646703c80fd84cebb5978e1ca940 (diff)
fix typo/grammar: "the the" --> the
* also removing pointless ASCII art (tdf#62475) * truncate ending whitespace in Doxyfile Change-Id: I59b012f41ac0d170216229da85a49aa41689dee5 Reviewed-on: https://gerrit.libreoffice.org/35151 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'shell')
-rw-r--r--shell/source/win32/shlxthandler/propsheets/propsheets.cxx12
1 files changed, 3 insertions, 9 deletions
diff --git a/shell/source/win32/shlxthandler/propsheets/propsheets.cxx b/shell/source/win32/shlxthandler/propsheets/propsheets.cxx
index 1ac28c349319..a6802ff787ad 100644
--- a/shell/source/win32/shlxthandler/propsheets/propsheets.cxx
+++ b/shell/source/win32/shlxthandler/propsheets/propsheets.cxx
@@ -209,8 +209,7 @@ HRESULT STDMETHODCALLTYPE CPropertySheet::AddPages(LPFNADDPROPSHEETPAGE lpfnAddP
hPage = CreatePropertySheetPage(&psp);
// keep this instance alive, will be released when the
- // the page is about to be destroyed in the callback function
-
+ // page is about to be destroyed in the callback function
if (hPage)
{
if (lpfnAddPage(hPage, lParam))
@@ -237,9 +236,7 @@ HRESULT STDMETHODCALLTYPE CPropertySheet::AddPages(LPFNADDPROPSHEETPAGE lpfnAddP
DestroyPropertySheetPage(hPage);
}
- // always return success else
- // no property sheet will be
- // displayed at all
+ // always return success else no property sheet will be displayed at all
return NOERROR;
}
@@ -257,8 +254,7 @@ UINT CALLBACK CPropertySheet::PropPageSummaryCallback(
CPropertySheet* pImpl =
reinterpret_cast<CPropertySheet*>(ppsp->lParam);
- // release this instance, acquired
- // in the AddPages method
+ // release this instance, acquired in the AddPages method
if (PSPCB_RELEASE == uMsg)
{
pImpl->Release();
@@ -329,8 +325,6 @@ void CPropertySheet::InitPropPageSummary(HWND hwnd, LPPROPSHEETPAGE /*lppsp*/)
}
-/**
-*/
void CPropertySheet::InitPropPageStatistics(HWND hwnd, LPPROPSHEETPAGE /*lppsp*/)
{
try