Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 328189
Collapse All | Expand All

(-)qt/pinentrydialog.cpp (-1 / +1 lines)
Lines 33-39 Link Here
33
33
34
PinEntryDialog::PinEntryDialog( QWidget* parent, const char* name, 
34
PinEntryDialog::PinEntryDialog( QWidget* parent, const char* name, 
35
                                bool modal, bool enable_quality_bar )
35
                                bool modal, bool enable_quality_bar )
36
  : QDialog( parent, name, modal ), _grabbed( false )
36
  : QDialog( parent, name, modal, Qt::WStyle_StaysOnTop ), _grabbed( false )
37
{
37
{
38
  QBoxLayout* top = new QVBoxLayout( this, 6 );
38
  QBoxLayout* top = new QVBoxLayout( this, 6 );
39
  QBoxLayout* upperLayout = new QHBoxLayout( top );
39
  QBoxLayout* upperLayout = new QHBoxLayout( top );
(-)qt4/pinentrydialog.cpp (-1 / +1 lines)
Lines 83-89 Link Here
83
83
84
PinEntryDialog::PinEntryDialog( QWidget* parent, const char* name, bool modal,
84
PinEntryDialog::PinEntryDialog( QWidget* parent, const char* name, bool modal,
85
                                bool enable_quality_bar )
85
                                bool enable_quality_bar )
86
  : QDialog( parent ), _grabbed( false )
86
  : QDialog( parent, Qt::WindowStaysOnTopHint ), _grabbed( false )
87
{
87
{
88
  setWindowFlags( windowFlags() & ~Qt::WindowContextHelpButtonHint );
88
  setWindowFlags( windowFlags() & ~Qt::WindowContextHelpButtonHint );
89
89

Return to bug 328189