summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorMalte Timmermann <Malte.Timmermann@sun.com>2010-02-18 16:15:58 +0100
committerMalte Timmermann <Malte.Timmermann@sun.com>2010-02-18 16:15:58 +0100
commit515edd55e546f810455f469e9725fb22e3ed8367 (patch)
tree88587f0659393bd555bcd4cf270684fa4ce585db /cui
parent41f067606af0344a78f624cd4df564c9fdd8e850 (diff)
mtaccfixes: #100833# FixedLine needs to be in correct z-order
Diffstat (limited to 'cui')
-rw-r--r--cui/source/inc/optpath.hxx2
-rw-r--r--cui/source/options/optpath.cxx3
2 files changed, 2 insertions, 3 deletions
diff --git a/cui/source/inc/optpath.hxx b/cui/source/inc/optpath.hxx
index c05b0b778c58..1255f0f70676 100644
--- a/cui/source/inc/optpath.hxx
+++ b/cui/source/inc/optpath.hxx
@@ -71,12 +71,12 @@ class SvxPathTabPage;
class SvxPathTabPage : public SfxTabPage
{
private:
+ FixedLine aStdBox;
FixedText aTypeText;
FixedText aPathText;
SvxControlFocusHelper aPathCtrl;
PushButton aStandardBtn;
PushButton aPathBtn;
- FixedLine aStdBox;
HeaderBar* pHeaderBar;
::svx::OptHeaderTabListBox* pPathBox;
diff --git a/cui/source/options/optpath.cxx b/cui/source/options/optpath.cxx
index 8e004b54b018..7dc3ba68b68d 100644
--- a/cui/source/options/optpath.cxx
+++ b/cui/source/options/optpath.cxx
@@ -220,13 +220,12 @@ SvxPathTabPage::SvxPathTabPage( Window* pParent, const SfxItemSet& rSet ) :
SfxTabPage( pParent, CUI_RES( RID_SFXPAGE_PATH ), rSet ),
+ aStdBox ( this, CUI_RES( GB_STD ) ),
aTypeText ( this, CUI_RES( FT_TYPE ) ),
aPathText ( this, CUI_RES( FT_PATH ) ),
aPathCtrl ( this, CUI_RES( LB_PATH ) ),
aStandardBtn ( this, CUI_RES( BTN_STANDARD ) ),
aPathBtn ( this, CUI_RES( BTN_PATH ) ),
- aStdBox ( this, CUI_RES( GB_STD ) ),
-
pHeaderBar ( NULL ),
pPathBox ( NULL ),
pImpl ( new OptPath_Impl( CUI_RES(IMG_LOCK), CUI_RES(IMG_LOCK_HC) ) ),