summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/texttool.cpp
Unidiff
Diffstat (limited to 'noncore/graphics/drawpad/texttool.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/drawpad/texttool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/graphics/drawpad/texttool.cpp b/noncore/graphics/drawpad/texttool.cpp
index 37b4801..34c8a76 100644
--- a/noncore/graphics/drawpad/texttool.cpp
+++ b/noncore/graphics/drawpad/texttool.cpp
@@ -6,29 +6,29 @@
6 * * 6 * *
7 * This program is free software; you can redistribute it and/or modify * 7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by * 8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or * 9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. * 10 * (at your option) any later version. *
11 * * 11 * *
12 ***************************************************************************/ 12 ***************************************************************************/
13 13
14#include "texttool.h" 14#include "texttool.h"
15 15
16#include "drawpad.h" 16#include "drawpad.h"
17#include "drawpadcanvas.h" 17#include "drawpadcanvas.h"
18#include "page.h"
18 19
19#include <qlayout.h> 20#include <qlayout.h>
20#include <qlineedit.h> 21#include <qlineedit.h>
21#include <qpainter.h> 22#include <qpainter.h>
22#include <qpixmap.h>
23 23
24TextToolDialog::TextToolDialog(QWidget* parent, const char* name) 24TextToolDialog::TextToolDialog(QWidget* parent, const char* name)
25 : QDialog(parent, name, true) 25 : QDialog(parent, name, true)
26{ 26{
27 setCaption(tr("Insert Text")); 27 setCaption(tr("Insert Text"));
28 28
29 m_pLineEdit = new QLineEdit(this); 29 m_pLineEdit = new QLineEdit(this);
30 30
31 QVBoxLayout* mainLayout = new QVBoxLayout(this, 4, 4); 31 QVBoxLayout* mainLayout = new QVBoxLayout(this, 4, 4);
32 32
33 mainLayout->addWidget(m_pLineEdit); 33 mainLayout->addWidget(m_pLineEdit);
34} 34}