diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-04-06 16:21:30 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-04-06 16:21:30 +0300 |
commit | c385e76c10b173b9820967825f0ce0c6fb71e9dd (patch) | |
tree | 72f2edb36dda4d75d4b4bac05637bf6f2bfc3e34 /uui | |
parent | b768aff76204b6e22992a1bea68cc077a985ad3d (diff) |
bnc#656566: EnableAlwaysOnTop(true) in OpenLockedQueryBox constructor
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/openlocked.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/uui/source/openlocked.cxx b/uui/source/openlocked.cxx index 84ea5f5b85f8..0c1d9178b546 100644 --- a/uui/source/openlocked.cxx +++ b/uui/source/openlocked.cxx @@ -44,6 +44,15 @@ OpenLockedQueryBox::OpenLockedQueryBox( Window* pParent, ResMgr* pResMgr, const AddButton( BUTTON_CANCEL, RET_CANCEL, BUTTONDIALOG_CANCELBUTTON ); SetButtonHelpText( RET_YES, String() ); SetButtonHelpText( RET_NO, String() ); + +#ifdef WNT + // bnc#656566 + // Yes, it is silly to do this only for this dialog but not the + // other similar ones. But hey, it was about this dialog that the + // customer complained. You who read this and feel the itch, feel + // free to fix the problem in a better way. + EnableAlwaysOnTop( true ); +#endif } OpenLockedQueryBox::~OpenLockedQueryBox() |