Typo.
[bertos.git] / emul / emulkbd.h
index 0263db1d0bca5bf66000c206903523a5ce4ab7a3..d7caa0cb8f509db374faca9e0afd13331fb8a98f 100755 (executable)
 #pragma once
 #endif // _MSC_VER > 1000
 
-#if _QT < 4
-#include <qframe.h>
-#else
 #include <QtGui/QFrame>
-#endif
 
 // fwd decl
 class QGridLayout;
@@ -42,7 +38,7 @@ protected:
 
 // Construction
 public:
-       EmulKbd(QWidget *parent = 0, const char *name = 0, Qt::WFlags f = 0);
+       EmulKbd(QWidget *parent = 0, Qt::WFlags f = 0);
        virtual ~EmulKbd();
 
 // Public methods
@@ -67,11 +63,7 @@ protected:
 
 // Private helper class for EmulKbd
 // NOTE: with protected inheritance, dynamic_cast<> does not work (gcc 2.96)
-#if _QT < 4
-#include <qpushbutton.h>
-#else
 #include <QtGui/qpushbutton.h>
-#endif
 class EmulKey : public QPushButton
 {
        Q_OBJECT