~ubuntu-branches/ubuntu/maverick/scribus-ng/maverick-backports

« back to all changes in this revision

Viewing changes to scribus/query.h

  • Committer: Bazaar Package Importer
  • Author(s): Oleksandr Moskalenko
  • Date: 2009-02-09 09:25:18 UTC
  • mfrom: (5.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090209092518-iqsxmh3pjspgrdyd
Tags: 1.3.5.dfsg~svn20090208-2
debian/control: Use "type-handling -n arm,armel,armeb any" to generate the
list of architectures to build on.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
#ifndef QUERY_H
8
8
#define QUERY_H
9
9
 
10
 
#include <qdialog.h>
11
 
class QLayout;
 
10
#include <QDialog>
 
11
#include <QVBoxLayout>
 
12
#include <QGridLayout>
 
13
#include <QHBoxLayout>
12
14
class QLabel;
13
15
class QLineEdit;
14
16
class QPushButton;
15
17
class QString;
16
 
class QVBoxLayout;
17
 
class QHBoxLayout;
18
 
class QGridLayout;
19
18
 
20
19
#include "scribusapi.h"
21
20
 
24
23
        Q_OBJECT
25
24
 
26
25
public:
27
 
        Query( QWidget* parent=0, const char* name=0, bool modal = FALSE, WFlags fl=0, QString text=0,
 
26
        Query( QWidget* parent=0, const char* name=0, bool modal = FALSE, Qt::WFlags fl=0, QString text=0,
28
27
               QString titel=0 );
29
28
        ~Query() {};
30
29