diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-05 16:20:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-05 20:52:29 +0100 |
commit | 5f6af959fa0d0021ff473d34d5a4408cfca16a8f (patch) | |
tree | 5d23e67df950344928545dcebd2530ca97066da2 /toolkit | |
parent | 57a1b2277df803387181f44ec70f4fa61c3fba4e (diff) |
InfoFont/Color is not used by vcl now
anywhere anyone wanted to Get[Font|Color] give it the Label
ones instead.
why this is exposed through uno is bewildering, stubbed those
out for the moment
Change-Id: I7a31d027287436be1c075c76a370047efd010bf3
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/stylesettings.cxx | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/toolkit/source/awt/stylesettings.cxx b/toolkit/source/awt/stylesettings.cxx index f38bdcf38aa8..833dd69c4384 100644 --- a/toolkit/source/awt/stylesettings.cxx +++ b/toolkit/source/awt/stylesettings.cxx @@ -520,15 +520,12 @@ namespace toolkit ::sal_Int32 SAL_CALL WindowStyleSettings::getInfoTextColor() throw (RuntimeException, std::exception) { - StyleMethodGuard aGuard( *m_pData ); - return lcl_getStyleColor( *m_pData, &StyleSettings::GetInfoTextColor ); + return getLabelTextColor(); } - void SAL_CALL WindowStyleSettings::setInfoTextColor( ::sal_Int32 _infotextcolor ) throw (RuntimeException, std::exception) + void SAL_CALL WindowStyleSettings::setInfoTextColor( ::sal_Int32 /*_infotextcolor*/ ) throw (RuntimeException, std::exception) { - StyleMethodGuard aGuard( *m_pData ); - lcl_setStyleColor( *m_pData, &StyleSettings::SetInfoTextColor, _infotextcolor ); } @@ -888,15 +885,12 @@ namespace toolkit FontDescriptor SAL_CALL WindowStyleSettings::getInfoFont() throw (RuntimeException, std::exception) { - StyleMethodGuard aGuard( *m_pData ); - return lcl_getStyleFont( *m_pData, &StyleSettings::GetInfoFont ); + return getLabelFont(); } - void SAL_CALL WindowStyleSettings::setInfoFont( const FontDescriptor& _infofont ) throw (RuntimeException, std::exception) + void SAL_CALL WindowStyleSettings::setInfoFont( const FontDescriptor& /*_infofont*/ ) throw (RuntimeException, std::exception) { - StyleMethodGuard aGuard( *m_pData ); - lcl_setStyleFont( *m_pData, &StyleSettings::SetInfoFont, &StyleSettings::GetInfoFont, _infofont ); } |