From c0d03513869ef81f83ab5a6a7497b6e6dfa07dbf Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 5 Nov 2023 11:54:42 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro (cherry picked from commit 050c10cdbd4f42edd6fe5d68cce2765e56adb157) --- .../docs/koffice/chalk/developers-plugins.docbook | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'koffice-i18n-nl/docs/koffice/chalk/developers-plugins.docbook') diff --git a/koffice-i18n-nl/docs/koffice/chalk/developers-plugins.docbook b/koffice-i18n-nl/docs/koffice/chalk/developers-plugins.docbook index 8b1a2628..2bda8c23 100644 --- a/koffice-i18n-nl/docs/koffice/chalk/developers-plugins.docbook +++ b/koffice-i18n-nl/docs/koffice/chalk/developers-plugins.docbook @@ -982,7 +982,7 @@ void KisToolStar::move(KisMoveEvent *event) // erase old lines on canvas draw(m_dragStart, m_dragEnd); // move (alt) or resize star - if (event->state() & Qt::AltButton) { + if (event->state() & TQt::AltButton) { KisPoint trans = event->pos() - m_dragEnd; m_dragStart += trans; m_dragEnd += trans; @@ -1050,7 +1050,7 @@ void KisToolStar::buttonRelease(KisButtonReleaseEvent *event) > and draws the outline of the star. We call this from the move() method to give the user feedback of the size and shape of their star. Note that we use the Qt::NotROPTQt::NotROP raster operation, which means that calling draw() a second time with the same start and end point the previously drawn star will be deleted. @@ -1064,14 +1064,14 @@ void KisToolStar::buttonRelease(KisButtonReleaseEvent *event) KisCanvasController *controller = m_subject->canvasController(); KisCanvas *canvas = controller->kiscanvas(); KisCanvasPainter p (canvas); - QPen pen(Qt::SolidLine); + QPen pen(TQt::SolidLine); KisPoint startPos; KisPoint endPos; startPos = controller->windowToView(start); endPos = controller->windowToView(end); - p.setRasterOp(Qt::NotROP); + p.setRasterOp(TQt::NotROP); vKisPoint points = starCoordinates(m_vertices, startPos.x(), startPos.y(), endPos.x(), endPos.y()); @@ -1097,8 +1097,8 @@ void KisToolStar::buttonRelease(KisButtonReleaseEvent *event) m_action = static_cast<TDERadioAction *>(collection->action(name())); if (m_action == 0) { - TDEShortcut shortcut(Qt::Key_Plus); - shortcut.append(TDEShortcut(Qt::Key_F9)); + TDEShortcut shortcut(TQt::Key_Plus); + shortcut.append(TDEShortcut(TQt::Key_F9)); m_action = new TDERadioAction(i18n("&Star"), "tool_star", shortcut, -- cgit v1.2.1