diff options
author | Mariusz Dykierek <mariuszdykierek@gmail.com> | 2012-02-17 15:22:46 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-02-17 15:22:46 +0000 |
commit | b8f007d05250258a8d8b5113298867f142af6e09 (patch) | |
tree | cf25149d5bb0ce4d9e05110e94892a8900bd32de | |
parent | df69ab8a803f87c85d516bcfcc544c19c94ade85 (diff) |
remove extraneous qualifiers that break some compilers
-rw-r--r-- | cli_ure/source/uno_bridge/cli_bridge.h | 2 | ||||
-rw-r--r-- | extensions/test/ole/cpnt/cpnt.cxx | 2 | ||||
-rw-r--r-- | extensions/test/stm/datatest.cxx | 4 | ||||
-rw-r--r-- | io/test/stm/datatest.cxx | 4 | ||||
-rw-r--r-- | sfx2/source/doc/printhelper.cxx | 2 | ||||
-rw-r--r-- | writerperfect/source/filter/FontStyle.hxx | 2 | ||||
-rw-r--r-- | writerperfect/source/filter/TextRunStyle.hxx | 4 |
7 files changed, 10 insertions, 10 deletions
diff --git a/cli_ure/source/uno_bridge/cli_bridge.h b/cli_ure/source/uno_bridge/cli_bridge.h index 0306e4dd6357..b9297d0bfaaf 100644 --- a/cli_ure/source/uno_bridge/cli_bridge.h +++ b/cli_ure/source/uno_bridge/cli_bridge.h @@ -96,7 +96,7 @@ struct Bridge System::Object* map_uno2cli(uno_Interface * pUnoI, typelib_InterfaceTypeDescription* pTD) const; - System::Object* Bridge::call_uno(uno_Interface * pUnoI, + System::Object* call_uno(uno_Interface * pUnoI, typelib_TypeDescription* member_td, typelib_TypeDescriptionReference * return_type, sal_Int32 nParams, typelib_MethodParameter const * pParams, diff --git a/extensions/test/ole/cpnt/cpnt.cxx b/extensions/test/ole/cpnt/cpnt.cxx index 0435ced3aa5d..b20795ecf003 100644 --- a/extensions/test/ole/cpnt/cpnt.cxx +++ b/extensions/test/ole/cpnt/cpnt.cxx @@ -315,7 +315,7 @@ public: // XTestSequence class EventListener: public WeakImplHelper1<XEventListener> { public: - EventListener::EventListener(): bCalled( sal_False) + EventListener(): bCalled( sal_False) {} virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (RuntimeException); diff --git a/extensions/test/stm/datatest.cxx b/extensions/test/stm/datatest.cxx index b084ac263dd0..2bdc349052a4 100644 --- a/extensions/test/stm/datatest.cxx +++ b/extensions/test/stm/datatest.cxx @@ -662,8 +662,8 @@ public: private: - void OObjectStreamTest::testObject( const XObjectOutputStreamRef &rOut, - const XObjectInputStreamRef &rIn ); + void testObject( const XObjectOutputStreamRef &rOut, + const XObjectInputStreamRef &rIn ); private: }; diff --git a/io/test/stm/datatest.cxx b/io/test/stm/datatest.cxx index 47b77697500e..4504403a4231 100644 --- a/io/test/stm/datatest.cxx +++ b/io/test/stm/datatest.cxx @@ -668,8 +668,8 @@ public: private: - void OObjectStreamTest::testObject( const Reference <XObjectOutputStream > &rOut, - const Reference <XObjectInputStream> &rIn ); + void testObject( const Reference <XObjectOutputStream > &rOut, + const Reference <XObjectInputStream> &rIn ); private: }; diff --git a/sfx2/source/doc/printhelper.cxx b/sfx2/source/doc/printhelper.cxx index 9206d3a1bfee..33b33a679104 100644 --- a/sfx2/source/doc/printhelper.cxx +++ b/sfx2/source/doc/printhelper.cxx @@ -511,7 +511,7 @@ class ImplUCBPrintWatcher : public ::osl::Thread // lock for further using of our member isn't neccessary - because // we truns alone by defenition. Nobody join for us nor use us ... - ImplUCBPrintWatcher::moveAndDeleteTemp(&m_pTempFile,m_sTargetURL); + moveAndDeleteTemp(&m_pTempFile,m_sTargetURL); // finishing of this run() method will call onTerminate() automaticly // kill this thread there! diff --git a/writerperfect/source/filter/FontStyle.hxx b/writerperfect/source/filter/FontStyle.hxx index 82efa7403bef..a27c7232b4db 100644 --- a/writerperfect/source/filter/FontStyle.hxx +++ b/writerperfect/source/filter/FontStyle.hxx @@ -57,7 +57,7 @@ public: FontStyleManager() : mStyleHash() {} virtual ~FontStyleManager() { - FontStyleManager::clean(); + clean(); } /* create a new font if the font does not exists and returns a font name diff --git a/writerperfect/source/filter/TextRunStyle.hxx b/writerperfect/source/filter/TextRunStyle.hxx index 98fc6b40b352..077191257737 100644 --- a/writerperfect/source/filter/TextRunStyle.hxx +++ b/writerperfect/source/filter/TextRunStyle.hxx @@ -76,7 +76,7 @@ public: ParagraphStyleManager() : mNameHash(), mStyleHash() {} virtual ~ParagraphStyleManager() { - ParagraphStyleManager::clean(); + clean(); } /* create a new style if it does not exists. In all case, returns the name of the style @@ -107,7 +107,7 @@ public: SpanStyleManager() : mNameHash(), mStyleHash() {} virtual ~SpanStyleManager() { - SpanStyleManager::clean(); + clean(); } /* create a new style if it does not exists. In all case, returns the name of the style |