[Libreoffice-commits] .: dbaccess/inc dbaccess/source

Kohei Yoshida kohei at kemper.freedesktop.org
Tue Nov 16 20:23:25 PST 2010


 dbaccess/inc/ToolBoxHelper.hxx            |    2 +-
 dbaccess/source/ui/dlg/indexdialog.cxx    |    2 +-
 dbaccess/source/ui/inc/indexdialog.hxx    |    2 +-
 dbaccess/source/ui/misc/ToolBoxHelper.cxx |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 4314498a0f4459be7118ca35d02c5e7afe46e890
Author: Kohei Yoshida <kyoshida at novell.com>
Date:   Tue Nov 16 23:23:02 2010 -0500

    Fixed several build breakages.

diff --git a/dbaccess/inc/ToolBoxHelper.hxx b/dbaccess/inc/ToolBoxHelper.hxx
index 49d41b7..f2afce8 100644
--- a/dbaccess/inc/ToolBoxHelper.hxx
+++ b/dbaccess/inc/ToolBoxHelper.hxx
@@ -62,7 +62,7 @@ namespace dbaui
             @param	_bHiContast
                 <TRUE/> when in high contrast mode.
         */
-        virtual ImageList getImageList(sal_Int16 _eSymbolsSize,sal_Bool _bHiContast) const = 0;
+        virtual ImageList getImageList(sal_Int16 _eSymbolsSize) const = 0;
 
         /** only the member will be set, derived classes can overload this function and do what need to be done.
             @param	_pTB
diff --git a/dbaccess/source/ui/dlg/indexdialog.cxx b/dbaccess/source/ui/dlg/indexdialog.cxx
index b4a1848..8e0376a 100644
--- a/dbaccess/source/ui/dlg/indexdialog.cxx
+++ b/dbaccess/source/ui/dlg/indexdialog.cxx
@@ -888,7 +888,7 @@ DBG_NAME(DbaIndexDialog)
         }
     }
     //------------------------------------------------------------------
-    ImageList DbaIndexDialog::getImageList(sal_Int16 _eBitmapSet,sal_Bool /*_bHiContast*/) const
+    ImageList DbaIndexDialog::getImageList(sal_Int16 _eBitmapSet) const
     {
         sal_Int16 nN = IMG_INDEX_DLG_SC;
         if ( _eBitmapSet == SFX_SYMBOLS_SIZE_LARGE )	 	 
diff --git a/dbaccess/source/ui/inc/indexdialog.hxx b/dbaccess/source/ui/inc/indexdialog.hxx
index 965407e..636e1bf 100644
--- a/dbaccess/source/ui/inc/indexdialog.hxx
+++ b/dbaccess/source/ui/inc/indexdialog.hxx
@@ -136,7 +136,7 @@ namespace dbaui
             @param	_bHiContast
                 <TRUE/> when in high contrast mode.
         */
-        virtual ImageList getImageList(sal_Int16 _eBitmapSet,sal_Bool _bHiContast) const;
+        virtual ImageList getImageList(sal_Int16 _eBitmapSet) const;
 
         /** will be called when the controls need to be resized.
         */
diff --git a/dbaccess/source/ui/misc/ToolBoxHelper.cxx b/dbaccess/source/ui/misc/ToolBoxHelper.cxx
index 78b4fb7..91d2d46 100644
--- a/dbaccess/source/ui/misc/ToolBoxHelper.cxx
+++ b/dbaccess/source/ui/misc/ToolBoxHelper.cxx
@@ -71,7 +71,7 @@ namespace dbaui
                 m_bIsHiContrast = m_pToolBox->GetSettings().GetStyleSettings().GetHighContrastMode();
 
                 
-                m_pToolBox->SetImageList( getImageList(m_nSymbolsSize,m_bIsHiContrast) );
+                m_pToolBox->SetImageList( getImageList(m_nSymbolsSize) );
                 Size aTbOldSize = m_pToolBox->GetSizePixel();
                 adjustToolBoxSize(m_pToolBox);
                 Size aTbNewSize = m_pToolBox->GetSizePixel();


More information about the Libreoffice-commits mailing list