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

« back to all changes in this revision

Viewing changes to scribus/tabscrapbook.cpp

  • 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:
4
4
a copyright and/or license notice that predates the release of Scribus 1.3.2
5
5
for which a new license (GPL+exception) is in place.
6
6
*/
7
 
#include <qcheckbox.h>
8
 
#include <qspinbox.h>
 
7
#include <QCheckBox>
 
8
#include <QSpinBox>
9
9
 
10
10
#include "tabscrapbook.h"
11
 
#include "tabscrapbook.moc"
 
11
#include "prefsstructs.h"
12
12
 
13
 
TabScrapbook::TabScrapbook(QWidget* parent, const char* name)
14
 
        : TabScrapbookBase(parent, name, 0)
 
13
TabScrapbook::TabScrapbook(QWidget* parent)
 
14
        : QWidget(parent, 0)
15
15
{
 
16
        setupUi(this);
16
17
}
17
18
 
18
19
void TabScrapbook::restoreDefaults(struct ApplicationPrefs *prefsData)