diff options
author | Andras Timar <atimar@suse.com> | 2012-06-13 22:45:06 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2012-06-13 22:46:08 +0200 |
commit | 097c9f295170db829a891ad999eb66660dd40267 (patch) | |
tree | 1a68713d124dcb88234a5c9b392365f82005512d /cui | |
parent | 1dc9da9c8ebe931f3859381353001107520c449c (diff) |
fdo#51046 fix tab order in About box
Change-Id: Ib15db39659faae398ae3d33f01886c43c0a3b507
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/about.cxx | 2 | ||||
-rw-r--r-- | cui/source/inc/about.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index c0df2381b53e..ddf296fc3b7e 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -75,8 +75,8 @@ AboutDialog::AboutDialog( Window* pParent, const ResId& rId) : aCopyrightTextShadow ( this, ResId( ABOUT_COPYRIGHT_TEXT, *rId.GetResMgr() ) ), aLogoImage ( this, ResId( ABOUT_IMAGE_LOGO, *rId.GetResMgr() ) ), aCreditsButton ( this, ResId( ABOUT_BTN_CREDITS, *rId.GetResMgr() ) ), - aWebsiteButton ( this, ResId( ABOUT_BTN_WEBSITE, *rId.GetResMgr() ) ), aLicenseButton ( this, ResId( ABOUT_BTN_LICENSE, *rId.GetResMgr() ) ), + aWebsiteButton ( this, ResId( ABOUT_BTN_WEBSITE, *rId.GetResMgr() ) ), aCancelButton ( this, ResId( ABOUT_BTN_CANCEL, *rId.GetResMgr() ) ), m_aVersionTextStr(ResId(ABOUT_STR_VERSION, *rId.GetResMgr()).toString().trim()), m_aVendorTextStr(ResId(ABOUT_STR_VENDOR, *rId.GetResMgr())), diff --git a/cui/source/inc/about.hxx b/cui/source/inc/about.hxx index fb876a5efd56..7fa29cda951f 100644 --- a/cui/source/inc/about.hxx +++ b/cui/source/inc/about.hxx @@ -52,8 +52,8 @@ private: MultiLineEdit aCopyrightTextShadow; FixedImage aLogoImage; PushButton aCreditsButton; - PushButton aWebsiteButton; PushButton aLicenseButton; + PushButton aWebsiteButton; CancelButton aCancelButton; String aVersionData; |