diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-18 21:11:04 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-18 21:11:53 +0000 |
commit | 783a107ee705528275e0e3e25931cd4fe8a98258 (patch) | |
tree | 5d76ee15e53e5d52ada4ecdb33fbc9c589c825b8 /sw/source/uibase/misc | |
parent | 2dce8dd41c208ecda40c054635f3736147ec8914 (diff) |
sw: load BitmapEx resources instead of Image ones
Change-Id: I77b5a892478d048decc2f5a018dbaf5a11b0194d
Diffstat (limited to 'sw/source/uibase/misc')
-rw-r--r-- | sw/source/uibase/misc/redlndlg.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/uibase/misc/redlndlg.cxx b/sw/source/uibase/misc/redlndlg.cxx index 6263e25a2625..bc5c1c64ba59 100644 --- a/sw/source/uibase/misc/redlndlg.cxx +++ b/sw/source/uibase/misc/redlndlg.cxx @@ -160,11 +160,11 @@ SwRedlineAcceptDlg::SwRedlineAcceptDlg(vcl::Window *pParent, VclBuilderContainer m_bOnlyFormatedRedlines( false ), m_bRedlnAutoFormat (bAutoFormat), m_bInhibitActivate( false ), - m_aInserted (SW_RES(IMG_REDLINE_INSERTED)), - m_aDeleted (SW_RES(IMG_REDLINE_DELETED)), - m_aFormated (SW_RES(IMG_REDLINE_FORMATED)), - m_aTableChgd (SW_RES(IMG_REDLINE_TABLECHG)), - m_aFormatCollSet (SW_RES(IMG_REDLINE_FMTCOLLSET)) + m_aInserted (BitmapEx(SW_RES(BMP_REDLINE_INSERTED))), + m_aDeleted (BitmapEx(SW_RES(BMP_REDLINE_DELETED))), + m_aFormated (BitmapEx(SW_RES(BMP_REDLINE_FORMATED))), + m_aTableChgd (BitmapEx(SW_RES(BMP_REDLINE_TABLECHG))), + m_aFormatCollSet (BitmapEx(SW_RES(BMP_REDLINE_FMTCOLLSET))) { m_aTabPagesCTRL->SetHelpId(HID_REDLINE_CTRL); |