No longer use Obsolete Member for QWidget:
topLevelWidget() => window() svn path=/trunk/KDE/kdebase/workspace/; revision=776408
This commit is contained in:
parent
9ba65b9ddc
commit
73f9f36e6e
1 changed files with 3 additions and 3 deletions
|
@ -661,7 +661,7 @@ bool RulesWidget::finalCheck()
|
||||||
all_types = false;
|
all_types = false;
|
||||||
if( wmclass_match->currentIndex() == Rules::UnimportantMatch && all_types )
|
if( wmclass_match->currentIndex() == Rules::UnimportantMatch && all_types )
|
||||||
{
|
{
|
||||||
if( KMessageBox::warningContinueCancel( topLevelWidget(),
|
if( KMessageBox::warningContinueCancel( window(),
|
||||||
i18n( "You have specified the window class as unimportant.\n"
|
i18n( "You have specified the window class as unimportant.\n"
|
||||||
"This means the settings will possibly apply to windows from all applications. "
|
"This means the settings will possibly apply to windows from all applications. "
|
||||||
"If you really want to create a generic setting, it is recommended you at least "
|
"If you really want to create a generic setting, it is recommended you at least "
|
||||||
|
@ -680,7 +680,7 @@ void RulesWidget::prepareWindowSpecific( WId window )
|
||||||
|
|
||||||
void RulesWidget::shortcutEditClicked()
|
void RulesWidget::shortcutEditClicked()
|
||||||
{
|
{
|
||||||
EditShortcutDialog dlg( topLevelWidget());
|
EditShortcutDialog dlg( window());
|
||||||
dlg.setShortcut( shortcut->text());
|
dlg.setShortcut( shortcut->text());
|
||||||
if( dlg.exec() == QDialog::Accepted )
|
if( dlg.exec() == QDialog::Accepted )
|
||||||
shortcut->setText( dlg.shortcut());
|
shortcut->setText( dlg.shortcut());
|
||||||
|
@ -741,7 +741,7 @@ EditShortcut::EditShortcut( QWidget* parent )
|
||||||
|
|
||||||
void EditShortcut::editShortcut()
|
void EditShortcut::editShortcut()
|
||||||
{
|
{
|
||||||
ShortcutDialog dlg( QKeySequence( shortcut->text()), topLevelWidget());
|
ShortcutDialog dlg( QKeySequence( shortcut->text()), window());
|
||||||
if( dlg.exec() == QDialog::Accepted )
|
if( dlg.exec() == QDialog::Accepted )
|
||||||
shortcut->setText( dlg.shortcut().toString());
|
shortcut->setText( dlg.shortcut().toString());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue