aboutdialog.h
changeset 364 7b74fa3772bf
parent 204 657078664946
child 390 0e1aeb21cb78
     1.1 --- a/aboutdialog.h	Tue Aug 01 09:30:57 2006 +0000
     1.2 +++ b/aboutdialog.h	Tue Sep 05 09:47:13 2006 +0000
     1.3 @@ -1,12 +1,12 @@
     1.4  #ifndef ABOUTDIALOG_H
     1.5  #define ABOUTDIALOG_H
     1.6  
     1.7 -#include <qtabwidget.h>
     1.8 -#include <qtextbrowser.h>
     1.9 -#include <qlayout.h>
    1.10 -#include <qdialog.h>
    1.11 -#include <qpushbutton.h>
    1.12 -#include <qstring.h>
    1.13 +#include <QTabWidget>
    1.14 +#include <QTextBrowser>
    1.15 +#include <QLayout>
    1.16 +#include <QDialog>
    1.17 +#include <QPushButton>
    1.18 +#include <QString>
    1.19  
    1.20  class AboutTextBrowser;
    1.21  /////////////////////////////////////////////////////////////////////////////
    1.22 @@ -22,9 +22,9 @@
    1.23  	AboutTextBrowser *credits;
    1.24  	AboutTextBrowser *license;
    1.25  
    1.26 -	QBoxLayout *mainLayout;
    1.27 -	QBoxLayout *topLayout;
    1.28 -	QBoxLayout *bottomLayout;
    1.29 +	QLayout *mainLayout;
    1.30 +	QLayout *topLayout;
    1.31 +	QLayout *bottomLayout;
    1.32  	QPushButton *okbutton;
    1.33  	
    1.34  };
    1.35 @@ -35,7 +35,7 @@
    1.36   public:
    1.37    AboutTextBrowser(QWidget *parent, const char *name = 0);
    1.38   public slots:
    1.39 -   void setSource(const QString &name);
    1.40 +	virtual void setSource(const QUrl &url);
    1.41  };
    1.42  
    1.43  #endif