[Patch] kdelibs compilation fix
Robert Ewald
robewald at gmx.net
Wed Jan 4 11:13:43 GMT 2006
Hi there,
here is a patch fixing a compilation error in kdelibs/kdeui/kkeydialog.cpp.
Bye
Robert Ewald
--- kdeui/kkeydialog.cpp
+++ kdeui/kkeydialog.cpp
@@ -1085,7 +1085,7 @@
KConfigGroup group( KGlobal::config(), "KKeyDialog Settings" );
QSize sz = size();
- resize( group.readEntry( "Dialog Size", &sz ).toSize() );
+ resize( group.readEntry( "Dialog Size", sz ) );
}
KKeyDialog::KKeyDialog( bool bAllowLetterShortcuts, QWidget *parent, const
char* name )
@@ -1100,7 +1100,7 @@
KConfigGroup group( KGlobal::config(), "KKeyDialog Settings" );
QSize sz = size();
- resize( group.readEntry( "Dialog Size", &sz ).toSize() );
+ resize( group.readEntry( "Dialog Size", sz ) );
}
KKeyDialog::~KKeyDialog()
More information about the kde-core-devel
mailing list