[Libreoffice-commits] .: binfilter/bf_sw binfilter/inc

Caolán McNamara caolan at kemper.freedesktop.org
Tue Aug 30 02:09:58 PDT 2011


 binfilter/bf_sw/source/core/crsr/sw_crsrsh.cxx |    5 ---
 binfilter/inc/bf_sw/crsrsh.hxx                 |   32 ++-----------------------
 2 files changed, 3 insertions(+), 34 deletions(-)

New commits:
commit fe495a2fba3f1ca9be31fcf571d669f9fae26eb9
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Tue Aug 30 10:09:27 2011 +0100

    deconfuse this

diff --git a/binfilter/bf_sw/source/core/crsr/sw_crsrsh.cxx b/binfilter/bf_sw/source/core/crsr/sw_crsrsh.cxx
index a666230..31b2657 100644
--- a/binfilter/bf_sw/source/core/crsr/sw_crsrsh.cxx
+++ b/binfilter/bf_sw/source/core/crsr/sw_crsrsh.cxx
@@ -270,9 +270,6 @@ using namespace ::com::sun::star::util;
 /*N*/       pUnoCrsr ? TRUE : FALSE;
 /*N*/ }
 
-
-#if defined(DBG_UTIL) || defined(WIN)
-
 // gebe den TabellenCrsr zurueck
 /*N*/ const SwPaM* SwCrsrShell::GetTblCrs() const   { return pTblCrsr; }
 /*N*/       SwPaM* SwCrsrShell::GetTblCrs()         { return pTblCrsr; }
@@ -286,8 +283,6 @@ using namespace ::com::sun::star::util;
 /*N*/           pCurCrsr->GetNext() != pCurCrsr;
 /*N*/ }
 
-#endif
-
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/binfilter/inc/bf_sw/crsrsh.hxx b/binfilter/inc/bf_sw/crsrsh.hxx
index 4731cbd..3325ba5 100644
--- a/binfilter/inc/bf_sw/crsrsh.hxx
+++ b/binfilter/inc/bf_sw/crsrsh.hxx
@@ -37,13 +37,6 @@
 #include <crstate.hxx>          // fuer die CursorMove-Staties
 #include <tblsel.hxx>               //SwTblSearchType
 
-#if !defined(DBG_UTIL) && !defined(WIN)
-// fuer die Inline-Methoden
-#include <viscrs.hxx>
-#define CRSR_INLINE inline
-#else
-#define CRSR_INLINE
-#endif
 namespace com { namespace sun { namespace star { namespace util {
     struct SearchOptions;
 } } } }
@@ -306,15 +299,15 @@ public:
 
     // Abfrage, ob ueberhaupt eine Selektion existiert, sprich der akt. Cursor
     // aufgespannt oder nicht der einzigste ist.
-    CRSR_INLINE bool IsSelection() const;
+    bool IsSelection() const;
 
     /*
      * liefert das SRectangle, auf dem der Cursor steht.
      */
     const SwRect &GetCharRect() const { return aCharRect; }
 
-    CRSR_INLINE const   SwPaM* GetTblCrs() const;
-    CRSR_INLINE         SwPaM* GetTblCrs();
+    const   SwPaM* GetTblCrs() const;
+    SwPaM* GetTblCrs();
 
         // ist der Crsr in einer Tabelle und ist die Selection ueber
         // zwei Spalten
@@ -356,25 +349,6 @@ public:
     ~SwChgLinkFlag();
 };
 
-
-
-// Cursor Inlines:
-
-#if !defined(DBG_UTIL) && !defined(WIN)
-
-inline const SwPaM* SwCrsrShell::GetTblCrs() const
-{
-    return pTblCrsr;
-}
-
-inline SwPaM* SwCrsrShell::GetTblCrs()
-{
-    return pTblCrsr;
-}
-
-#endif
-
-
 } //namespace binfilter
 #endif  // _CRSRSH_HXX
 


More information about the Libreoffice-commits mailing list