Skip to content

Commit

Permalink
Port xconfig to Qt5 - Replace Q3VBox with QWidget
Browse files Browse the repository at this point in the history
Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com>
Signed-off-by: Thiago Macieira <thiago.macieira@intel.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
  • Loading branch information
Boris Barbulovski authored and Michal Marek committed Oct 14, 2015
1 parent 1ce6735 commit 34d6320
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion scripts/kconfig/qconf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#include <qglobal.h>

#include <QMainWindow>
#include <q3vbox.h>
#include <QList>
#include <qtextbrowser.h>
#include <QAction>
Expand Down
4 changes: 2 additions & 2 deletions scripts/kconfig/qconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ class ConfigLineEdit : public QLineEdit {
ConfigItem *item;
};

class ConfigView : public Q3VBox {
class ConfigView : public QWidget {
Q_OBJECT
typedef class Q3VBox Parent;
typedef class QWidget Parent;
public:
ConfigView(QWidget* parent, const char *name = 0);
~ConfigView(void);
Expand Down

0 comments on commit 34d6320

Please sign in to comment.