findwindow.h
branchqt4-port
changeset 2 608f976aa7bb
parent 0 7a96bd401351
     1.1 --- a/findwindow.h	Sun Jan 30 12:58:47 2005 +0000
     1.2 +++ b/findwindow.h	Tue Jun 06 14:58:11 2006 +0000
     1.3 @@ -1,20 +1,20 @@
     1.4  #ifndef FINDWINDOW_H 
     1.5  #define FINDWINDOW_H
     1.6  
     1.7 -#include <qmainwindow.h>
     1.8 +#include <q3mainwindow.h>
     1.9  #include <qcombobox.h>
    1.10  #include <qpushbutton.h>
    1.11 -#include <qgroupbox.h>
    1.12 +#include <q3groupbox.h>
    1.13  #include <qlayout.h>
    1.14  #include <qlabel.h>
    1.15  
    1.16  
    1.17 -class FindWindow : public QGroupBox
    1.18 +class FindWindow : public Q3GroupBox
    1.19  {
    1.20  	Q_OBJECT
    1.21  
    1.22  public:
    1.23 -	FindWindow (QWidget* parent=0, const char* namme=0, WFlags f=0);
    1.24 +	FindWindow (QWidget* parent=0, const char* namme=0);
    1.25  
    1.26  public slots:	
    1.27  	void popup();
    1.28 @@ -27,7 +27,7 @@
    1.29  	void somethingChanged();	// emit to mainwindow
    1.30  
    1.31  private:
    1.32 -	QGroupBox *findbox;
    1.33 +	Q3GroupBox *findbox;
    1.34  	QComboBox *findcombo;
    1.35  	QPushButton *clearbutton;
    1.36  	QPushButton *findbutton;