summaryrefslogtreecommitdiff
path: root/include/unotools
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-06 19:48:16 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-06 19:48:16 +0300
commit3c9d929465353cd1079fe2e9c8561dc377047ac5 (patch)
tree277f189cec8aea9666a64e7a9bc0f571511bf18c /include/unotools
parent49ccde0d3d3edaac9473f915011a501058e64002 (diff)
Kill superfluous spacing before semicolons
Change-Id: I05353e942fa1a2b7338c8415cdba06adb2bdd43f
Diffstat (limited to 'include/unotools')
-rw-r--r--include/unotools/cmdoptions.hxx4
-rw-r--r--include/unotools/compatibility.hxx2
-rw-r--r--include/unotools/dynamicmenuoptions.hxx4
-rw-r--r--include/unotools/extendedsecurityoptions.hxx4
-rw-r--r--include/unotools/fontoptions.hxx12
-rw-r--r--include/unotools/historyoptions.hxx8
-rw-r--r--include/unotools/localisationoptions.hxx8
-rw-r--r--include/unotools/moduleoptions.hxx4
-rw-r--r--include/unotools/printwarningoptions.hxx4
-rw-r--r--include/unotools/securityoptions.hxx30
-rw-r--r--include/unotools/viewoptions.hxx20
11 files changed, 50 insertions, 50 deletions
diff --git a/include/unotools/cmdoptions.hxx b/include/unotools/cmdoptions.hxx
index ad53ee0b769e..8585526097f2 100644
--- a/include/unotools/cmdoptions.hxx
+++ b/include/unotools/cmdoptions.hxx
@@ -157,8 +157,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtCommandOptions : public utl::detail:
Do it in your source only.
*/
- static SvtCommandOptions_Impl* m_pDataContainer ; /// impl. data container as dynamic pointer for smaller memory requirements!
- static sal_Int32 m_nRefCount ; /// internal ref count mechanism
+ static SvtCommandOptions_Impl* m_pDataContainer; /// impl. data container as dynamic pointer for smaller memory requirements!
+ static sal_Int32 m_nRefCount; /// internal ref count mechanism
}; // class SvtCmdOptions
diff --git a/include/unotools/compatibility.hxx b/include/unotools/compatibility.hxx
index 31cab1d2afbf..69fa29d9c137 100644
--- a/include/unotools/compatibility.hxx
+++ b/include/unotools/compatibility.hxx
@@ -218,7 +218,7 @@ class UNOTOOLS_DLLPUBLIC SvtCompatibilityOptions: public utl::detail::Options
*/
static SvtCompatibilityOptions_Impl* m_pDataContainer; /// impl. data container as dynamic pointer for smaller memory requirements!
- static sal_Int32 m_nRefCount ; /// internal ref count mechanism
+ static sal_Int32 m_nRefCount; /// internal ref count mechanism
}; // class SvtCompatibilityOptions
diff --git a/include/unotools/dynamicmenuoptions.hxx b/include/unotools/dynamicmenuoptions.hxx
index 7f057e5b8fcf..997147b616e7 100644
--- a/include/unotools/dynamicmenuoptions.hxx
+++ b/include/unotools/dynamicmenuoptions.hxx
@@ -128,8 +128,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtDynamicMenuOptions : public utl::det
Do it in your source only.
*/
- static SvtDynamicMenuOptions_Impl* m_pDataContainer ; /// impl. data container as dynamic pointer for smaller memory requirements!
- static sal_Int32 m_nRefCount ; /// internal ref count mechanism
+ static SvtDynamicMenuOptions_Impl* m_pDataContainer; /// impl. data container as dynamic pointer for smaller memory requirements!
+ static sal_Int32 m_nRefCount; /// internal ref count mechanism
}; // class SvtDynamicMenuOptions
diff --git a/include/unotools/extendedsecurityoptions.hxx b/include/unotools/extendedsecurityoptions.hxx
index cc42849b2927..ed9866fb50a9 100644
--- a/include/unotools/extendedsecurityoptions.hxx
+++ b/include/unotools/extendedsecurityoptions.hxx
@@ -109,8 +109,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtExtendedSecurityOptions : public utl
Do it in your source only.
*/
- static SvtExtendedSecurityOptions_Impl* m_pDataContainer ; /// impl. data container as dynamic pointer for smaller memory requirements!
- static sal_Int32 m_nRefCount ; /// internal ref count mechanism
+ static SvtExtendedSecurityOptions_Impl* m_pDataContainer; /// impl. data container as dynamic pointer for smaller memory requirements!
+ static sal_Int32 m_nRefCount; /// internal ref count mechanism
}; // class SvtExtendedSecurityOptions
diff --git a/include/unotools/fontoptions.hxx b/include/unotools/fontoptions.hxx
index c62f7dd34d66..7492547c9744 100644
--- a/include/unotools/fontoptions.hxx
+++ b/include/unotools/fontoptions.hxx
@@ -88,11 +88,11 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtFontOptions : public utl::detail::Op
@onerror No error should occur!
*//*-*****************************************************************************************************/
- bool IsFontHistoryEnabled ( ) const ;
- void EnableFontHistory ( bool bState ) ;
+ bool IsFontHistoryEnabled ( ) const;
+ void EnableFontHistory ( bool bState );
- bool IsFontWYSIWYGEnabled ( ) const ;
- void EnableFontWYSIWYG ( bool bState ) ;
+ bool IsFontWYSIWYGEnabled ( ) const;
+ void EnableFontWYSIWYG ( bool bState );
private:
/*-****************************************************************************************************
@@ -119,8 +119,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtFontOptions : public utl::detail::Op
Do it in your source only.
*/
- static SvtFontOptions_Impl* m_pDataContainer ; /// impl. data container as dynamic pointer for smaller memory requirements!
- static sal_Int32 m_nRefCount ; /// internal ref count mechanism
+ static SvtFontOptions_Impl* m_pDataContainer; /// impl. data container as dynamic pointer for smaller memory requirements!
+ static sal_Int32 m_nRefCount; /// internal ref count mechanism
}; // class SvtFontOptions
diff --git a/include/unotools/historyoptions.hxx b/include/unotools/historyoptions.hxx
index 3aaff6e7ac2b..c77161f89a04 100644
--- a/include/unotools/historyoptions.hxx
+++ b/include/unotools/historyoptions.hxx
@@ -112,7 +112,7 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtHistoryOptions : public utl::detail:
@onerror -
*//*-*****************************************************************************************************/
- sal_uInt32 GetSize( EHistoryType eHistory ) const ;
+ sal_uInt32 GetSize( EHistoryType eHistory ) const;
/*-****************************************************************************************************
@short clear complete sepcified list
@@ -141,7 +141,7 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtHistoryOptions : public utl::detail:
@onerror -
*//*-*****************************************************************************************************/
- ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > > GetList( EHistoryType eHistory ) const ;
+ ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > > GetList( EHistoryType eHistory ) const;
/*-****************************************************************************************************
@short append a new item to specified list
@@ -193,8 +193,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtHistoryOptions : public utl::detail:
Do it in your source only.
*/
- static SvtHistoryOptions_Impl* m_pDataContainer ; /// impl. data container as dynamic pointer for smaller memory requirements!
- static sal_Int32 m_nRefCount ; /// internal ref count mechanism
+ static SvtHistoryOptions_Impl* m_pDataContainer; /// impl. data container as dynamic pointer for smaller memory requirements!
+ static sal_Int32 m_nRefCount; /// internal ref count mechanism
}; // class SvtHistoryOptions
diff --git a/include/unotools/localisationoptions.hxx b/include/unotools/localisationoptions.hxx
index da77f65d68fb..6b73ef0fd6c6 100644
--- a/include/unotools/localisationoptions.hxx
+++ b/include/unotools/localisationoptions.hxx
@@ -77,7 +77,7 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtLocalisationOptions : public utl::de
@onerror No error should occur!
*//*-*****************************************************************************************************/
- bool IsAutoMnemonic ( ) const ;
+ bool IsAutoMnemonic ( ) const;
/*-****************************************************************************************************
@short interface methods to get and set value of config key "org.openoffice.Office.Common/View/Localisation/DialogScale"
@@ -97,7 +97,7 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtLocalisationOptions : public utl::de
@onerror No error should occur!
*//*-*****************************************************************************************************/
- sal_Int32 GetDialogScale( ) const ;
+ sal_Int32 GetDialogScale( ) const;
private:
/*-****************************************************************************************************
@@ -126,8 +126,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtLocalisationOptions : public utl::de
Do it in your source only.
*/
- static SvtLocalisationOptions_Impl* m_pDataContainer ; /// impl. data container as dynamic pointer for smaller memory requirements!
- static sal_Int32 m_nRefCount ; /// internal ref count mechanism
+ static SvtLocalisationOptions_Impl* m_pDataContainer; /// impl. data container as dynamic pointer for smaller memory requirements!
+ static sal_Int32 m_nRefCount; /// internal ref count mechanism
}; // class SvtLocalisationOptions
diff --git a/include/unotools/moduleoptions.hxx b/include/unotools/moduleoptions.hxx
index 0cece61f728e..f0db3241466f 100644
--- a/include/unotools/moduleoptions.hxx
+++ b/include/unotools/moduleoptions.hxx
@@ -190,8 +190,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtModuleOptions : public utl::detail::
Do it in your source only.
*/
- static SvtModuleOptions_Impl* m_pDataContainer ; /// impl. data container as dynamic pointer for smaller memory requirements!
- static sal_Int32 m_nRefCount ; /// internal ref count mechanism
+ static SvtModuleOptions_Impl* m_pDataContainer; /// impl. data container as dynamic pointer for smaller memory requirements!
+ static sal_Int32 m_nRefCount; /// internal ref count mechanism
}; // class SvtModuleOptions
diff --git a/include/unotools/printwarningoptions.hxx b/include/unotools/printwarningoptions.hxx
index d85094d88216..0c37c80dd86b 100644
--- a/include/unotools/printwarningoptions.hxx
+++ b/include/unotools/printwarningoptions.hxx
@@ -111,8 +111,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtPrintWarningOptions : public utl::de
Do it in your source only.
*/
- static SvtPrintWarningOptions_Impl* m_pDataContainer ; /// impl. data container as dynamic pointer for smaller memory requirements!
- static sal_Int32 m_nRefCount ; /// internal ref count mechanism
+ static SvtPrintWarningOptions_Impl* m_pDataContainer; /// impl. data container as dynamic pointer for smaller memory requirements!
+ static sal_Int32 m_nRefCount; /// internal ref count mechanism
}; // class SvtPrintWarningOptions
diff --git a/include/unotools/securityoptions.hxx b/include/unotools/securityoptions.hxx
index 58e4971acb8e..d098a5273394 100644
--- a/include/unotools/securityoptions.hxx
+++ b/include/unotools/securityoptions.hxx
@@ -133,7 +133,7 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtSecurityOptions : public utl::detail
@onerror No error should occur!
*//*-*****************************************************************************************************/
- bool IsReadOnly( EOption eOption ) const ;
+ bool IsReadOnly( EOption eOption ) const;
/*-****************************************************************************************************
@short interface methods to get and set value of config key "org.openoffice.Office.Common/Security/Scripting/SecureURL"
@@ -153,8 +153,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtSecurityOptions : public utl::detail
@onerror No error should occur!
*//*-*****************************************************************************************************/
- ::com::sun::star::uno::Sequence< OUString > GetSecureURLs( ) const ;
- void SetSecureURLs( const ::com::sun::star::uno::Sequence< OUString >& seqURLList ) ;
+ ::com::sun::star::uno::Sequence< OUString > GetSecureURLs( ) const;
+ void SetSecureURLs( const ::com::sun::star::uno::Sequence< OUString >& seqURLList );
/*-****************************************************************************************************
@short interface methods to get and set value of config key "org.openoffice.Office.Common/Security/Scripting/StarOfficeBasic"
@@ -177,10 +177,10 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtSecurityOptions : public utl::detail
@onerror No error should occur!
*//*-*****************************************************************************************************/
- sal_Int32 GetMacroSecurityLevel ( ) const ;
- void SetMacroSecurityLevel ( sal_Int32 _nLevel ) ;
+ sal_Int32 GetMacroSecurityLevel ( ) const;
+ void SetMacroSecurityLevel ( sal_Int32 _nLevel );
- bool IsMacroDisabled ( ) const ;
+ bool IsMacroDisabled ( ) const;
/**
Check whether the given uri is either no dangerous macro-execution
@@ -200,19 +200,19 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtSecurityOptions : public utl::detail
*/
bool isTrustedLocationUri(OUString const & uri) const;
- ::com::sun::star::uno::Sequence< Certificate > GetTrustedAuthors ( ) const ;
- void SetTrustedAuthors ( const ::com::sun::star::uno::Sequence< Certificate >& rAuthors ) ;
+ ::com::sun::star::uno::Sequence< Certificate > GetTrustedAuthors ( ) const;
+ void SetTrustedAuthors ( const ::com::sun::star::uno::Sequence< Certificate >& rAuthors );
// for bool options only!
- bool IsOptionSet ( EOption eOption ) const ;
- bool SetOption ( EOption eOption, bool bValue ) ;
- bool IsOptionEnabled ( EOption eOption ) const ;
+ bool IsOptionSet ( EOption eOption ) const;
+ bool SetOption ( EOption eOption, bool bValue );
+ bool IsOptionEnabled ( EOption eOption ) const;
// xmlsec05 deprecated methods
bool IsExecutePlugins() const;
void SetExecutePlugins( bool bSet );
- EBasicSecurityMode GetBasicMode( ) const ;
- void SetBasicMode( EBasicSecurityMode eMode ) ;
+ EBasicSecurityMode GetBasicMode( ) const;
+ void SetBasicMode( EBasicSecurityMode eMode );
bool IsWarningEnabled() const;
void SetWarningEnabled( bool bSet );
bool IsConfirmationEnabled() const;
@@ -250,8 +250,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtSecurityOptions : public utl::detail
Do it in your source only.
*/
- static SvtSecurityOptions_Impl* m_pDataContainer ; /// impl. data container as dynamic pointer for smaller memory requirements!
- static sal_Int32 m_nRefCount ; /// internal ref count mechanism
+ static SvtSecurityOptions_Impl* m_pDataContainer; /// impl. data container as dynamic pointer for smaller memory requirements!
+ static sal_Int32 m_nRefCount; /// internal ref count mechanism
}; // class SvtSecurityOptions
diff --git a/include/unotools/viewoptions.hxx b/include/unotools/viewoptions.hxx
index dcf044d28ab2..ad6de9affef4 100644
--- a/include/unotools/viewoptions.hxx
+++ b/include/unotools/viewoptions.hxx
@@ -277,8 +277,8 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtViewOptions : public utl::detail::Op
/// specify which list of views in configuration is used! This can't be a static value!!!
/// ... because we need this value to work with right static data container.
- EViewType m_eViewType ;
- OUString m_sViewName ;
+ EViewType m_eViewType;
+ OUString m_sViewName;
/// - impl. data container as dynamic pointer for smaller memory requirements!
/// - internal ref count mechanism
@@ -291,14 +291,14 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtViewOptions : public utl::detail::Op
Do it in your source only.
*/
- static SvtViewOptionsBase_Impl* m_pDataContainer_Dialogs ; /// hold data for all dialogs
- static sal_Int32 m_nRefCount_Dialogs ;
- static SvtViewOptionsBase_Impl* m_pDataContainer_TabDialogs ; /// hold data for all tab-dialogs
- static sal_Int32 m_nRefCount_TabDialogs ;
- static SvtViewOptionsBase_Impl* m_pDataContainer_TabPages ; /// hold data for all tab-pages
- static sal_Int32 m_nRefCount_TabPages ;
- static SvtViewOptionsBase_Impl* m_pDataContainer_Windows ; /// hold data for all windows
- static sal_Int32 m_nRefCount_Windows ;
+ static SvtViewOptionsBase_Impl* m_pDataContainer_Dialogs; /// hold data for all dialogs
+ static sal_Int32 m_nRefCount_Dialogs;
+ static SvtViewOptionsBase_Impl* m_pDataContainer_TabDialogs; /// hold data for all tab-dialogs
+ static sal_Int32 m_nRefCount_TabDialogs;
+ static SvtViewOptionsBase_Impl* m_pDataContainer_TabPages; /// hold data for all tab-pages
+ static sal_Int32 m_nRefCount_TabPages;
+ static SvtViewOptionsBase_Impl* m_pDataContainer_Windows; /// hold data for all windows
+ static sal_Int32 m_nRefCount_Windows;
}; // class SvtViewOptions