summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-26 09:11:28 +0200
committerNoel Grandin <noel@peralex.com>2015-10-26 09:12:05 +0200
commit3d784c4af6e0fdde0b7e555ad940bc13a61c2a22 (patch)
tree58415192099a6e8c352f92ab55749244668f03bf /cui
parentd31844da975b75e0a45121f990dee9d7cde30b30 (diff)
remove extra spaces around ::
just makes it harder to grep for methods Change-Id: I0925db2f9284972fcf7e1e3adf90cbe21f69eb15
Diffstat (limited to 'cui')
-rw-r--r--cui/source/customize/cfg.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx
index 0d2f6d4e8a31..b263ae9478ee 100644
--- a/cui/source/customize/cfg.cxx
+++ b/cui/source/customize/cfg.cxx
@@ -5295,7 +5295,7 @@ bool SvxIconSelectorDialog::ImportGraphic( const OUString& aURL )
* The SvxIconReplacementDialog class
*
*******************************************************************************/
-SvxIconReplacementDialog :: SvxIconReplacementDialog(
+SvxIconReplacementDialog::SvxIconReplacementDialog(
vcl::Window *pWindow, const OUString& aMessage, bool /*bYestoAll*/ )
:
MessBox( pWindow, WB_DEF_YES, CUI_RES( RID_SVXSTR_REPLACE_ICON_CONFIRM ), CUI_RES( RID_SVXSTR_REPLACE_ICON_WARNING ) )
@@ -5310,7 +5310,7 @@ MessBox( pWindow, WB_DEF_YES, CUI_RES( RID_SVXSTR_REPLACE_ICON_CONFIRM ), CUI_R
AddButton( StandardButtonType::Cancel, 4);
}
-SvxIconReplacementDialog :: SvxIconReplacementDialog(
+SvxIconReplacementDialog::SvxIconReplacementDialog(
vcl::Window *pWindow, const OUString& aMessage )
: MessBox( pWindow, WB_YES_NO_CANCEL, CUI_RES( RID_SVXSTR_REPLACE_ICON_CONFIRM ), CUI_RES( RID_SVXSTR_REPLACE_ICON_WARNING ) )
{
@@ -5318,7 +5318,7 @@ SvxIconReplacementDialog :: SvxIconReplacementDialog(
SetMessText( ReplaceIconName( aMessage ));
}
-OUString SvxIconReplacementDialog :: ReplaceIconName( const OUString& rMessage )
+OUString SvxIconReplacementDialog::ReplaceIconName( const OUString& rMessage )
{
OUString name;
OUString message = CUI_RES( RID_SVXSTR_REPLACE_ICON_WARNING );
@@ -5332,7 +5332,7 @@ OUString SvxIconReplacementDialog :: ReplaceIconName( const OUString& rMessage )
return name;
}
-sal_uInt16 SvxIconReplacementDialog :: ShowDialog()
+sal_uInt16 SvxIconReplacementDialog::ShowDialog()
{
this->Execute();
return ( this->GetCurButtonId() );