diff options
author | Frank Schönheit <fs@openoffice.org> | 2002-05-17 07:41:57 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2002-05-17 07:41:57 +0000 |
commit | 59ef0a32b9065f5b2d5a5289ff832f49bf3f759a (patch) | |
tree | 488e061d0dce749b59e5127dd1c83c49fc4fd9b9 /svx/source/inc/filtnav.hxx | |
parent | bcb7da39e2c8a0e6efa98aa8cca765b91aca6537 (diff) |
high contrast support #99375#
Diffstat (limited to 'svx/source/inc/filtnav.hxx')
-rw-r--r-- | svx/source/inc/filtnav.hxx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/svx/source/inc/filtnav.hxx b/svx/source/inc/filtnav.hxx index d380cfcb450f..69d0854824f7 100644 --- a/svx/source/inc/filtnav.hxx +++ b/svx/source/inc/filtnav.hxx @@ -2,9 +2,9 @@ * * $RCSfile: filtnav.hxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: fs $ $Date: 2002-05-16 15:04:58 $ + * last change: $Author: fs $ $Date: 2002-05-17 08:35:35 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -169,7 +169,8 @@ public: void SetText( const ::rtl::OUString& rText ){ m_aText = rText; } ::rtl::OUString GetText() const { return m_aText; } FmParentData* GetParent() const {return m_pParent;} - virtual Image GetImage() const; + + virtual Image GetImage( BmpColorMode _eMode = BMP_COLOR_NORMAL ) const; }; //======================================================================== @@ -208,7 +209,7 @@ public: const ::com::sun::star::uno::Reference< ::com::sun::star::form::XFormController > & GetController(){return m_xController;} void SetCurrentPosition(sal_Int32 nCurrent){m_nCurrent = nCurrent;} sal_Int32 GetCurrentPosition() const {return m_nCurrent;} - virtual Image GetImage() const; + virtual Image GetImage( BmpColorMode _eMode = BMP_COLOR_NORMAL ) const; }; //======================================================================== @@ -220,7 +221,7 @@ public: FmFilterItems(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxFactory,FmFormItem* pParent, const ::rtl::OUString& rText ):FmParentData(_rxFactory,pParent, rText){} FmFilterItem* Find(const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XTextComponent > & xText) const; - virtual Image GetImage() const; + virtual Image GetImage( BmpColorMode _eMode = BMP_COLOR_NORMAL ) const; }; //======================================================================== @@ -240,7 +241,7 @@ public: const ::rtl::OUString& GetFieldName() const {return m_aFieldName;} const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XTextComponent > & GetTextComponent() const {return m_xText;} - virtual Image GetImage() const; + virtual Image GetImage( BmpColorMode _eMode = BMP_COLOR_NORMAL ) const; }; //======================================================================== |