summaryrefslogtreecommitdiffstats
path: root/src/kvirc/kvs
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-02-20 11:46:59 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-04-02 16:49:11 +0900
commitf887a3ee8f51b158ffb32d88e1489a6f2e0a9dbb (patch)
tree3e047d1a1fc6d4e3b55af254251f52723fb46455 /src/kvirc/kvs
parentab992aba703fea5fba22a7f7fc3044d9306277ca (diff)
downloadkvirc-f887a3ee8f51b158ffb32d88e1489a6f2e0a9dbb.tar.gz
kvirc-f887a3ee8f51b158ffb32d88e1489a6f2e0a9dbb.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kvirc/kvs')
-rw-r--r--src/kvirc/kvs/kvi_kvs_object.cpp2
-rw-r--r--src/kvirc/kvs/kvi_kvs_object.h2
-rw-r--r--src/kvirc/kvs/kvi_kvs_parser_lside.cpp2
-rw-r--r--src/kvirc/kvs/kvi_kvs_popupmenu.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/kvirc/kvs/kvi_kvs_object.cpp b/src/kvirc/kvs/kvi_kvs_object.cpp
index 5efa91e..1eda917 100644
--- a/src/kvirc/kvs/kvi_kvs_object.cpp
+++ b/src/kvirc/kvs/kvi_kvs_object.cpp
@@ -554,7 +554,7 @@
For example, you can find out if the widget accepts drops by calling [classfnc]$property(acceptDrops)[classfnc].[br]
This function will be mainly useful in the [class]wrapper[/class] class.
!fn: $setProperty(<TQt property>,<property value>)
- Sets a qt property for this widget.[br]
+ Sets a tqt property for this widget.[br]
This is for advanced scripting, and can control really many features of the TQt widgets.[br]
For example, the [class]multilineedit[/class] widgets can be set to
the "password" echo mode only by using this function call:[br]
diff --git a/src/kvirc/kvs/kvi_kvs_object.h b/src/kvirc/kvs/kvi_kvs_object.h
index cddbe41..0e9312a 100644
--- a/src/kvirc/kvs/kvi_kvs_object.h
+++ b/src/kvirc/kvs/kvi_kvs_object.h
@@ -77,7 +77,7 @@ protected:
kvs_hobject_t m_hSignalSender;
TQString m_szSignalName;
- // if this object wraps a qt one, it is here
+ // if this object wraps a tqt one, it is here
TQObject * m_pObject;
bool m_bObjectOwner; // do we have to destroy it ?
diff --git a/src/kvirc/kvs/kvi_kvs_parser_lside.cpp b/src/kvirc/kvs/kvi_kvs_parser_lside.cpp
index bcca75d..69202e1 100644
--- a/src/kvirc/kvs/kvi_kvs_parser_lside.cpp
+++ b/src/kvirc/kvs/kvi_kvs_parser_lside.cpp
@@ -162,7 +162,7 @@
(We use \\N because KVIrc will first unquote the string when parsing...)[br]
\\0 is a special escape that will be replaced by the entire match (is always valid!).[br]
WARNING: the "capture-text" feature is not available if KVIrc has been compiled
- with qt older than 3.0.0. You can find out if the feature is available by
+ with tqt older than 3.0.0. You can find out if the feature is available by
looking for the string "TQt3" in the array returned by [fnc]$features[/fnc].[br]
[flags] may be a combination of the letters 'g','i' and 'w'.[br]
'g' causes the search to be global and not stop after the first occurence of <search pattern>.[br]
diff --git a/src/kvirc/kvs/kvi_kvs_popupmenu.cpp b/src/kvirc/kvs/kvi_kvs_popupmenu.cpp
index 5f0293d..5d511cd 100644
--- a/src/kvirc/kvs/kvi_kvs_popupmenu.cpp
+++ b/src/kvirc/kvs/kvi_kvs_popupmenu.cpp
@@ -293,7 +293,7 @@ KviKvsPopupMenuItemLabel::~KviKvsPopupMenuItemLabel()
void KviKvsPopupMenuItemLabel::labelDestroyed()
{
- m_pLabel = 0; // someone (maybe qt, maybe us) has destroyed the label
+ m_pLabel = 0; // someone (maybe tqt, maybe us) has destroyed the label
}