summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-07-06 10:32:07 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-07-09 12:16:56 +0100
commite133535eb8518b9dd22f4ce890a61f34f40d096b (patch)
tree22378525d6defc5bb1739346cbf341e31ebef834 /cui
parent8c6cd2f686c72c57d44a4295d4f7c9cdbead1e38 (diff)
remove dangling missing resources since high contrast cleanup
Change-Id: I582a17512666ec72f427de994ccf6382d2e93a18
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/dbregister.hrc3
-rw-r--r--cui/source/options/optpath.cxx10
-rw-r--r--cui/source/options/optpath.hrc3
3 files changed, 7 insertions, 9 deletions
diff --git a/cui/source/options/dbregister.hrc b/cui/source/options/dbregister.hrc
index 7757050a6eb7..fcd5d5653434 100644
--- a/cui/source/options/dbregister.hrc
+++ b/cui/source/options/dbregister.hrc
@@ -26,8 +26,7 @@
#define BTN_EDIT 14
#define GB_STD 15
#define IMG_LOCK 16
-#define IMG_LOCK_HC 17
-#define BTN_DELETE 18
+#define BTN_DELETE 17
#endif // SVX_DBREGISTER_HRC
diff --git a/cui/source/options/optpath.cxx b/cui/source/options/optpath.cxx
index d2b5a5f026de..14829c57389b 100644
--- a/cui/source/options/optpath.cxx
+++ b/cui/source/options/optpath.cxx
@@ -88,13 +88,13 @@ struct OptPath_Impl
{
SvtDefaultOptions m_aDefOpt;
Image m_aLockImage;
- Image m_aLockImageHC;
String m_sMultiPathDlg;
Reference< XPropertySet > m_xPathSettings;
- OptPath_Impl(const ResId& rLockRes, const ResId& rLockResHC) :
- m_aLockImage(rLockRes),
- m_aLockImageHC(rLockResHC){}
+ OptPath_Impl(const ResId& rLockRes)
+ : m_aLockImage(rLockRes)
+ {
+ }
};
// struct PathUserData_Impl ----------------------------------------------
@@ -219,7 +219,7 @@ SvxPathTabPage::SvxPathTabPage( Window* pParent, const SfxItemSet& rSet ) :
aPathBtn ( this, CUI_RES( BTN_PATH ) ),
pHeaderBar ( NULL ),
pPathBox ( NULL ),
- pImpl ( new OptPath_Impl( CUI_RES(IMG_LOCK), CUI_RES(IMG_LOCK_HC) ) ),
+ pImpl ( new OptPath_Impl( CUI_RES(IMG_LOCK) ) ),
xDialogListener ( new ::svt::DialogClosedListener() )
{
diff --git a/cui/source/options/optpath.hrc b/cui/source/options/optpath.hrc
index cf45a0e1c0de..3b1a259e24f5 100644
--- a/cui/source/options/optpath.hrc
+++ b/cui/source/options/optpath.hrc
@@ -27,8 +27,7 @@
#define BTN_STANDARD 14
#define GB_STD 15
#define IMG_LOCK 16
-#define IMG_LOCK_HC 17
-#define STR_MULTIPATHDLG 18
+#define STR_MULTIPATHDLG 17
#endif