summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/notation/TextInserter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editors/notation/TextInserter.cpp')
-rw-r--r--src/gui/editors/notation/TextInserter.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gui/editors/notation/TextInserter.cpp b/src/gui/editors/notation/TextInserter.cpp
index aa8e1ff..f862b88 100644
--- a/src/gui/editors/notation/TextInserter.cpp
+++ b/src/gui/editors/notation/TextInserter.cpp
@@ -40,9 +40,9 @@
#include "NotePixmapFactory.h"
#include "NotationElement.h"
#include <kaction.h>
-#include <qdialog.h>
-#include <qiconset.h>
-#include <qstring.h>
+#include <tqdialog.h>
+#include <tqiconset.h>
+#include <tqstring.h>
namespace Rosegarden
@@ -52,21 +52,21 @@ TextInserter::TextInserter(NotationView* view)
: NotationTool("TextInserter", view),
m_text("", Text::Dynamic)
{
- QIconSet icon = QIconSet(NotePixmapFactory::toQPixmap(NotePixmapFactory::
+ TQIconSet icon = TQIconSet(NotePixmapFactory::toQPixmap(NotePixmapFactory::
makeToolbarPixmap("select")));
new KAction(i18n("Switch to Select Tool"), icon, 0, this,
- SLOT(slotSelectSelected()), actionCollection(),
+ TQT_SLOT(slotSelectSelected()), actionCollection(),
"select");
new KAction(i18n("Switch to Erase Tool"), "eraser", 0, this,
- SLOT(slotEraseSelected()), actionCollection(),
+ TQT_SLOT(slotEraseSelected()), actionCollection(),
"erase");
icon = QIconSet
(NotePixmapFactory::toQPixmap(NotePixmapFactory::
makeToolbarPixmap("crotchet")));
new KAction(i18n("Switch to Inserting Notes"), icon, 0, this,
- SLOT(slotNotesSelected()), actionCollection(),
+ TQT_SLOT(slotNotesSelected()), actionCollection(),
"notes");
createMenu("textinserter.rc");
@@ -96,7 +96,7 @@ void TextInserter::ready()
void TextInserter::handleLeftButtonPress(timeT,
int,
int staffNo,
- QMouseEvent* e,
+ TQMouseEvent* e,
ViewElement *element)
{
if (staffNo < 0)
@@ -137,7 +137,7 @@ void TextInserter::handleLeftButtonPress(timeT,
TextEventDialog *dialog = new TextEventDialog
(m_nParentView, m_nParentView->getNotePixmapFactory(), defaultText);
- if (dialog->exec() == QDialog::Accepted) {
+ if (dialog->exec() == TQDialog::Accepted) {
m_text = dialog->getText();
@@ -163,7 +163,7 @@ void TextInserter::handleLeftButtonPress(timeT,
delete dialog;
}
-const QString TextInserter::ToolName = "textinserter";
+const TQString TextInserter::ToolName = "textinserter";
}
#include "TextInserter.moc"