summaryrefslogtreecommitdiff
path: root/uui
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-04-06 16:21:30 +0300
committerTor Lillqvist <tlillqvist@novell.com>2011-04-06 16:21:30 +0300
commit804dcc9e229812509a06799fbcf1ceea7ca34398 (patch)
tree86ed841d4bc900d22a9936990e4998e780076de7 /uui
parentb3c02d6a7fe8e2b7b259286af8a4481c5164a134 (diff)
bnc#656566: EnableAlwaysOnTop(true) in OpenLockedQueryBox constructor
Diffstat (limited to 'uui')
-rw-r--r--uui/source/openlocked.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/uui/source/openlocked.cxx b/uui/source/openlocked.cxx
index 4734a486d3..bf2076f295 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()