summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-03-05 23:03:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-03-06 09:18:36 +0900
commit8a69776a27bbf85e75ae3a2ea042b8406d0f698f (patch)
tree98bb5a959e77177b996067a936206c841ca7d9c8
parent5b1ac559bd730f55d6139867487d366c9f7a934c (diff)
downloadbasket-8a69776a27bbf85e75ae3a2ea042b8406d0f698f.tar.gz
basket-8a69776a27bbf85e75ae3a2ea042b8406d0f698f.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 7b4eb8439cccbf68235860f099beda70515fc2c7)
-rw-r--r--doc/man/basket.18
-rw-r--r--src/basket.cpp6
-rw-r--r--src/qeffects.cpp4
3 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/basket.1 b/doc/man/basket.1
index db272f0..d87ebf7 100644
--- a/doc/man/basket.1
+++ b/doc/man/basket.1
@@ -32,8 +32,8 @@ Open basket archive or template
\fB\-\-help\fR
Show help about options
.TP
-\fB\-\-help\-qt\fR
-Show Qt specific options
+\fB\-\-help\-tqt\fR
+Show TQt specific options
.TP
\fB\-\-help\-tde\fR
Show TDE specific options
@@ -52,7 +52,7 @@ Show license information
.TP
\fB\-\-\fR
End of options
-.SS "Qt options:"
+.SS "TQt options:"
.TP
\fB\-\-display\fR <displayname>
Use the X\-server display 'displayname'
@@ -71,7 +71,7 @@ using the QApplication::ManyColor color
specification
.TP
\fB\-\-nograb\fR
-tells Qt to never grab the mouse or the keyboard
+tells TQt to never grab the mouse or the keyboard
.TP
\fB\-\-dograb\fR
running under a debugger can cause an implicit
diff --git a/src/basket.cpp b/src/basket.cpp
index 75dc8ca..c5fc9c8 100644
--- a/src/basket.cpp
+++ b/src/basket.cpp
@@ -2416,7 +2416,7 @@ void Basket::contentsMouseMoveEvent(TQMouseEvent *event)
m_selectionStarted = false;
NoteSelection *selection = selectedNotes();
if (selection && selection->firstStacked()) {
- TQDragObject *d = NoteDrag::dragObject(selection, /*cutting=*/false, /*source=*/this); // d will be deleted by QT
+ TQDragObject *d = NoteDrag::dragObject(selection, /*cutting=*/false, /*source=*/this); // d will be deleted by TQt
/*bool shouldRemove = */d->drag();
// delete selection;
@@ -4205,10 +4205,10 @@ void Basket::doCopy(CopyMode copyMode)
NoteSelection *selection = selectedNotes();
int countCopied = countSelecteds();
if (selection && selection->firstStacked()) {
- TQDragObject *d = NoteDrag::dragObject(selection, copyMode == CutToClipboard, /*source=*/0); // d will be deleted by QT
+ TQDragObject *d = NoteDrag::dragObject(selection, copyMode == CutToClipboard, /*source=*/0); // d will be deleted by TQt
// /*bool shouldRemove = */d->drag();
// delete selection;
- cb->setData(d, mode); // NoteMultipleDrag will be deleted by QT
+ cb->setData(d, mode); // NoteMultipleDrag will be deleted by TQt
// if (copyMode == CutToClipboard && !note->useFile()) // If useFile(), NoteDrag::dragObject() will delete it TODO
// note->slotDelete();
diff --git a/src/qeffects.cpp b/src/qeffects.cpp
index 8d67a95..5a36f17 100644
--- a/src/qeffects.cpp
+++ b/src/qeffects.cpp
@@ -66,7 +66,7 @@ static TQAlphaWidget* q_blend = 0;
*/
TQAlphaWidget::TQAlphaWidget( TQWidget* w, WFlags f )
: TQWidget( TQApplication::desktop()->screen(TQApplication::desktop()->screenNumber(w)),
- "qt internal alpha effect widget", f )
+ "tqt internal alpha effect widget", f )
{
#if 1 //ndef TQ_WS_WIN
setEnabled( FALSE );
@@ -297,7 +297,7 @@ static TQRollEffect* q_roll = 0;
*/
TQRollEffect::TQRollEffect( TQWidget* w, WFlags f, DirFlags orient )
: TQWidget( TQApplication::desktop()->screen(TQApplication::desktop()->screenNumber(w)),
- "qt internal roll effect widget", f ), orientation(orient)
+ "tqt internal roll effect widget", f ), orientation(orient)
{
#if 1 //ndef TQ_WS_WIN
setEnabled( FALSE );