summaryrefslogtreecommitdiffstats
path: root/kspread
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-03-09 18:58:02 +0900
committerMichele Calgaro <[email protected]>2024-03-22 21:28:42 +0900
commit3723148aa321530969ae4dd7472c461b94b5405e (patch)
treee5d11a855ae5ab9b409ce5f478b3a78d310f39f5 /kspread
parente220a1b2b9fa4c97bbcaabf51cd259e62edd3ab3 (diff)
downloadkoffice-3723148aa321530969ae4dd7472c461b94b5405e.tar.gz
koffice-3723148aa321530969ae4dd7472c461b94b5405e.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 7a7827396f90ad06945cd5a367f93d8ffd380e0f)
Diffstat (limited to 'kspread')
-rw-r--r--kspread/Doxyfile2
-rw-r--r--kspread/dialogs/kspread_dlg_formula.h2
-rw-r--r--kspread/dialogs/kspread_dlg_goalseek.h2
-rw-r--r--kspread/kspread_cell.cpp2
-rw-r--r--kspread/kspread_object.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/kspread/Doxyfile b/kspread/Doxyfile
index dc3d0732..6d283754 100644
--- a/kspread/Doxyfile
+++ b/kspread/Doxyfile
@@ -115,7 +115,7 @@ SHORT_NAMES = NO
# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
# will interpret the first line (until the first dot) of a JavaDoc-style
# comment as the brief description. If set to NO, the JavaDoc
-# comments will behave just like the Qt-style comments (thus requiring an
+# comments will behave just like the TQt-style comments (thus requiring an
# explicit @brief command for a brief description.
JAVADOC_AUTOBRIEF = YES
diff --git a/kspread/dialogs/kspread_dlg_formula.h b/kspread/dialogs/kspread_dlg_formula.h
index 505dd9c0..d3c3ebaa 100644
--- a/kspread/dialogs/kspread_dlg_formula.h
+++ b/kspread/dialogs/kspread_dlg_formula.h
@@ -153,7 +153,7 @@ private:
TQLineEdit *fiveElement;
/**
* Tells which of the lineedits has the logical focus currently.
- * It may happen that a lineedit does not have qt focus but
+ * It may happen that a lineedit does not have tqt focus but
* logical focus but not the other way round.
*/
TQLineEdit* m_focus;
diff --git a/kspread/dialogs/kspread_dlg_goalseek.h b/kspread/dialogs/kspread_dlg_goalseek.h
index 1427a424..32ac2d9e 100644
--- a/kspread/dialogs/kspread_dlg_goalseek.h
+++ b/kspread/dialogs/kspread_dlg_goalseek.h
@@ -99,7 +99,7 @@ class GoalSeekDialog : public KDialog
/**
* Tells which of the lineedits has the logical focus currently.
- * It may happen that a lineedit does not have qt focus but
+ * It may happen that a lineedit does not have tqt focus but
* logical focus but not the other way round.
*/
TQLineEdit * m_focus;
diff --git a/kspread/kspread_cell.cpp b/kspread/kspread_cell.cpp
index 1c99dea3..1664c9bb 100644
--- a/kspread/kspread_cell.cpp
+++ b/kspread/kspread_cell.cpp
@@ -2730,7 +2730,7 @@ void Cell::paintBackground( TQPainter& painter, const KoRect &cellRect,
painter.setBackgroundColor( defaultColorGroup.base() );
}
else {
- //bad hack but there is a qt bug
+ //bad hack but there is a tqt bug
//so I can print backgroundcolor
TQBrush bb( bg );
if ( !bg.isValid() )
diff --git a/kspread/kspread_object.cpp b/kspread/kspread_object.cpp
index ad699e4e..ca373205 100644
--- a/kspread/kspread_object.cpp
+++ b/kspread/kspread_object.cpp
@@ -1292,7 +1292,7 @@ void EmbeddedPictureObject::draw( TQPainter *_painter/*, KoZoomHandler*_zoomHand
{
TQRect rect( 0, 0, (int)( _zoomHandler->zoomItX( ow ) ),
(int)( _zoomHandler->zoomItY( oh ) ) );
- // ### HACK QT seems not to be able to correctly compare TQVariant
+ // ### HACK TQt seems not to be able to correctly compare TQVariant
bool variants1;
if (m_ie_par1.isNull())
variants1=m_cachedPar1.isNull();