summaryrefslogtreecommitdiff
path: root/sc/source/ui
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-10-10 13:02:43 +0000
committerOliver Bolte <obo@openoffice.org>2008-10-10 13:02:43 +0000
commitee4f08b8fdbee2e30ae1ad325e90f1e4bc968485 (patch)
tree00c57fe2050a672adac9ddfde737c7fed5f2dcf3 /sc/source/ui
parent5608c660d2e60e6faff0a689bf87739e36d5bed5 (diff)
CWS-TOOLING: integrate CWS cmcfixes49
Diffstat (limited to 'sc/source/ui')
-rw-r--r--sc/source/ui/dbgui/csvruler.cxx6
-rw-r--r--sc/source/ui/inc/fupoor.hxx4
-rw-r--r--sc/source/ui/vba/vbacolorformat.cxx4
-rw-r--r--sc/source/ui/vba/vbacolorformat.hxx4
4 files changed, 9 insertions, 9 deletions
diff --git a/sc/source/ui/dbgui/csvruler.cxx b/sc/source/ui/dbgui/csvruler.cxx
index 8152dc376..5437f9beb 100644
--- a/sc/source/ui/dbgui/csvruler.cxx
+++ b/sc/source/ui/dbgui/csvruler.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: csvruler.cxx,v $
- * $Revision: 1.16 $
+ * $Revision: 1.16.146.1 $
*
* This file is part of OpenOffice.org.
*
@@ -261,10 +261,10 @@ sal_Int32 ScCsvRuler::FindEmptyPos( sal_Int32 nPos, ScMoveMode eDir ) const
nNewPos = Max( nPos, FindEmptyPos( GetPosCount(), MOVE_PREV ) );
break;
case MOVE_PREV:
- while( HasSplit( --nNewPos ) );
+ while( HasSplit( --nNewPos ) ) ;
break;
case MOVE_NEXT:
- while( HasSplit( ++nNewPos ) );
+ while( HasSplit( ++nNewPos ) ) ;
break;
default:
{
diff --git a/sc/source/ui/inc/fupoor.hxx b/sc/source/ui/inc/fupoor.hxx
index 57bf81d56..2abd4d541 100644
--- a/sc/source/ui/inc/fupoor.hxx
+++ b/sc/source/ui/inc/fupoor.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: fupoor.hxx,v $
- * $Revision: 1.7 $
+ * $Revision: 1.7.146.1 $
*
* This file is part of OpenOffice.org.
*
@@ -90,7 +90,7 @@ private:
// #95491# see member
void SetMouseButtonCode(sal_uInt16 nNew) { if(nNew != mnCode) mnCode = nNew; }
- const sal_uInt16 GetMouseButtonCode() const { return mnCode; }
+ sal_uInt16 GetMouseButtonCode() const { return mnCode; }
virtual void Paint(const Rectangle&, Window*) {}
diff --git a/sc/source/ui/vba/vbacolorformat.cxx b/sc/source/ui/vba/vbacolorformat.cxx
index 0725af736..59c8c0e23 100644
--- a/sc/source/ui/vba/vbacolorformat.cxx
+++ b/sc/source/ui/vba/vbacolorformat.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: vbacolorformat.cxx,v $
- * $Revision: 1.3 $
+ * $Revision: 1.3.146.1 $
*
* This file is part of OpenOffice.org.
*
@@ -34,7 +34,7 @@
using namespace org::openoffice;
using namespace com::sun::star;
-const sal_Int32
+sal_Int32
MsoColorIndizes::getColorIndex( sal_Int32 nIndex )
{
const static sal_Int32 COLORINDIZES[56] =
diff --git a/sc/source/ui/vba/vbacolorformat.hxx b/sc/source/ui/vba/vbacolorformat.hxx
index 410e8364f..e113538dc 100644
--- a/sc/source/ui/vba/vbacolorformat.hxx
+++ b/sc/source/ui/vba/vbacolorformat.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: vbacolorformat.hxx,v $
- * $Revision: 1.3 $
+ * $Revision: 1.3.146.1 $
*
* This file is part of OpenOffice.org.
*
@@ -97,7 +97,7 @@ struct MsoColorIndizes
const static sal_Int32 HAPICOLOR_INDIGO = 3355545;
const static sal_Int32 HAPICOLOR_GRAY_80_PERCENT = 3355443;
- const static sal_Int32 getColorIndex( sal_Int32 nIndex );
+ static sal_Int32 getColorIndex( sal_Int32 nIndex );
};