diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:26:33 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:26:33 +0000 |
commit | e9172f07ab5b59ec3f98fc6250df7f589a132a93 (patch) | |
tree | d9af7a73dff67ff5845d730ae3aa95bc618f48f0 /automation/source | |
parent | c1d6e86e1444d28e590a93fb63c2881717359652 (diff) |
INTEGRATION: CWS warnings01 (1.3.10); FILE MERGED
2006/03/02 08:08:44 gh 1.3.10.4: removing warnings for linux and solarisSparc and some windows
2006/03/01 09:48:41 gh 1.3.10.3: remove leftover comment
2006/02/02 14:25:37 gh 1.3.10.2: syntax error
2006/02/02 09:20:03 gh 1.3.10.1: removed compiler warnings
Diffstat (limited to 'automation/source')
-rw-r--r-- | automation/source/testtool/comm_bas.hxx | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/automation/source/testtool/comm_bas.hxx b/automation/source/testtool/comm_bas.hxx index afc361558701..d6c14b7dddaa 100644 --- a/automation/source/testtool/comm_bas.hxx +++ b/automation/source/testtool/comm_bas.hxx @@ -4,9 +4,9 @@ * * $RCSfile: comm_bas.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-07 19:30:52 $ + * last change: $Author: hr $ $Date: 2006-06-20 00:26:33 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -71,7 +71,7 @@ private: }; static Methods aManagerMethods[]; // Methodentabelle static Methods aLinkMethods[]; // Methodentabelle - Methods *pMethods; // Aktuelle Methodentabelle + Methods *m_pMethods; // Aktuelle Methodentabelle // Methoden // Manager @@ -90,22 +90,20 @@ private: void LGetString( SbxVariable* pVar, SbxArray* pPar, BOOL bWrite ); // Interne Member und Methoden - CommunicationManagerClientViaSocket *pManager; - CommunicationLink *pLink; - BOOL bIsManager; // Ist es kein Manager, so ist es ein Link + CommunicationManagerClientViaSocket *m_pManager; + CommunicationLink *m_pLink; + BOOL m_bIsManager; // Ist es kein Manager, so ist es ein Link // Kram fr Manager DECL_LINK( Open, CommunicationLink* ); DECL_LINK( Close, CommunicationLink* ); DECL_LINK( Data, CommunicationLink* ); void Events( String aType, CommunicationLink* pLink ); - BOOL bCatchOpen; - CommunicationLink *pNewLink; - String aEventHandlerName; - - // Kram fr Link - + BOOL m_bCatchOpen; + CommunicationLink *m_pNewLink; + String m_aEventHandlerName; + using SbxVariable::GetInfo; // Infoblock auffuellen SbxInfo* GetInfo( short nIdx ); @@ -119,7 +117,7 @@ public: // Suchen eines Elements virtual SbxVariable* Find( const String&, SbxClassType ); - CommunicationLink* GetCommunicationLink() { return pLink; } + CommunicationLink* GetCommunicationLink() { return m_pLink; } }; |