Mailinglist Archive: yast-commit (683 mails)
| < Previous | Next > |
[yast-commit] r42582 - /branches/tmp/coolo/qt4-port/src/YQRadioButton.cc
- From: dmacvicar@xxxxxxxxxxxxxxxx
- Date: Sun, 02 Dec 2007 23:37:26 -0000
- Message-id: <20071202233727.1F51D2548F@xxxxxxxxxxxxxxxx>
Author: dmacvicar
Date: Mon Dec 3 00:37:26 2007
New Revision: 42582
URL: http://svn.opensuse.org/viewcvs/yast?rev=42582&view=rev
Log:
YQRadioButton done
Modified:
branches/tmp/coolo/qt4-port/src/YQRadioButton.cc
Modified: branches/tmp/coolo/qt4-port/src/YQRadioButton.cc
URL:
http://svn.opensuse.org/viewcvs/yast/branches/tmp/coolo/qt4-port/src/YQRadioButton.cc?rev=42582&r1=42581&r2=42582&view=diff
==============================================================================
--- branches/tmp/coolo/qt4-port/src/YQRadioButton.cc (original)
+++ branches/tmp/coolo/qt4-port/src/YQRadioButton.cc Mon Dec 3 00:37:26 2007
@@ -16,11 +16,9 @@
/-*/
-#define QT3_SUPPORT
-
#include <qradiobutton.h>
#include <QMouseEvent>
-#include <q3boxlayout.h>
+#include <QBoxLayout>
#define y2log_component "qt-ui"
#include <ycp/y2log.h>
@@ -52,7 +50,7 @@
setWidgetRep( this );
setFrameStyle( NoFrame );
- QBoxLayout * layout = new QBoxLayout( this, QBoxLayout::LeftToRight );
+ QBoxLayout * layout = new QBoxLayout( QBoxLayout::LeftToRight, this );
_qt_radioButton = new QRadioButton( fromUTF8( label ), this );
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Mon Dec 3 00:37:26 2007
New Revision: 42582
URL: http://svn.opensuse.org/viewcvs/yast?rev=42582&view=rev
Log:
YQRadioButton done
Modified:
branches/tmp/coolo/qt4-port/src/YQRadioButton.cc
Modified: branches/tmp/coolo/qt4-port/src/YQRadioButton.cc
URL:
http://svn.opensuse.org/viewcvs/yast/branches/tmp/coolo/qt4-port/src/YQRadioButton.cc?rev=42582&r1=42581&r2=42582&view=diff
==============================================================================
--- branches/tmp/coolo/qt4-port/src/YQRadioButton.cc (original)
+++ branches/tmp/coolo/qt4-port/src/YQRadioButton.cc Mon Dec 3 00:37:26 2007
@@ -16,11 +16,9 @@
/-*/
-#define QT3_SUPPORT
-
#include <qradiobutton.h>
#include <QMouseEvent>
-#include <q3boxlayout.h>
+#include <QBoxLayout>
#define y2log_component "qt-ui"
#include <ycp/y2log.h>
@@ -52,7 +50,7 @@
setWidgetRep( this );
setFrameStyle( NoFrame );
- QBoxLayout * layout = new QBoxLayout( this, QBoxLayout::LeftToRight );
+ QBoxLayout * layout = new QBoxLayout( QBoxLayout::LeftToRight, this );
_qt_radioButton = new QRadioButton( fromUTF8( label ), this );
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |