summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-09-29 20:32:59 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-09-29 20:34:04 +0100
commit26bb3a08958d1d3062f9c7eb9b155a8e228f1bc5 (patch)
treea73f9d7e7dffc4baf66d92ad60cd3e3ddb68b6e1 /cui
parent48d39355cababdacb8b882e495b8151ac82fd2f6 (diff)
add border to driverlist and drop unnecessary custom hid
Change-Id: I4e81556a0e1e0a6c9dd2aea42b3e7106f7dcf65c
Diffstat (limited to 'cui')
-rw-r--r--cui/source/inc/helpid.hrc1
-rw-r--r--cui/source/options/connpooloptions.cxx3
2 files changed, 1 insertions, 3 deletions
diff --git a/cui/source/inc/helpid.hrc b/cui/source/inc/helpid.hrc
index a66bead76f47..4685beb086ef 100644
--- a/cui/source/inc/helpid.hrc
+++ b/cui/source/inc/helpid.hrc
@@ -30,7 +30,6 @@
#define HID_EDIT_MODULES "CUI_HID_EDIT_MODULES"
#define HID_OPTIONS_COLORCONFIG_SAVE_SCHEME "CUI_HID_OPTIONS_COLORCONFIG_SAVE_SCHEME"
#define HID_OFADLG_OPTIONS_TREE "CUI_HID_OFADLG_OPTIONS_TREE"
-#define HID_OFA_CONNPOOL_DRIVERLIST "CUI_HID_OFA_CONNPOOL_DRIVERLIST"
#define UID_OFA_CONNPOOL_DRIVERLIST_BACK "CUI_UID_OFA_CONNPOOL_DRIVERLIST_BACK"
#define HID_OFA_FONT_SUBST_CLB "CUI_HID_OFA_FONT_SUBST_CLB"
#define HID_DBPATH_CTL_PATH "CUI_HID_DBPATH_CTL_PATH"
diff --git a/cui/source/options/connpooloptions.cxx b/cui/source/options/connpooloptions.cxx
index d154b0f03b8a..f2b6509e36a6 100644
--- a/cui/source/options/connpooloptions.cxx
+++ b/cui/source/options/connpooloptions.cxx
@@ -90,7 +90,7 @@ namespace offapp
//--------------------------------------------------------------------
DriverListControl::DriverListControl(Window* _pParent)
- :EditBrowseBox(_pParent, EBBF_NOROWPICTURE, BROWSER_AUTO_VSCROLL | BROWSER_AUTO_HSCROLL | BROWSER_HIDECURSOR | BROWSER_AUTOSIZE_LASTCOL)
+ :EditBrowseBox(_pParent, EBBF_NOROWPICTURE, BROWSER_AUTO_VSCROLL | BROWSER_AUTO_HSCROLL | BROWSER_HIDECURSOR | BROWSER_AUTOSIZE_LASTCOL | WB_BORDER)
,m_aSeekRow(m_aSettings.end())
,m_sYes(CUI_RES(RID_SVXSTR_YES))
,m_sNo(CUI_RES(RID_SVXSTR_NO))
@@ -98,7 +98,6 @@ namespace offapp
SetStyle((GetStyle() & ~WB_HSCROLL) | WB_AUTOHSCROLL);
SetUniqueId(UID_OFA_CONNPOOL_DRIVERLIST_BACK);
- GetDataWindow().SetHelpId(HID_OFA_CONNPOOL_DRIVERLIST);
}
extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeDriverListControl(Window *pParent, VclBuilder::stringmap &)