summaryrefslogtreecommitdiffstats
path: root/konversation/src
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src')
-rw-r--r--konversation/src/ircinput.cpp2
-rw-r--r--konversation/src/query.cpp2
-rw-r--r--konversation/src/statuspanel.cpp2
-rw-r--r--konversation/src/viewcontainer.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/konversation/src/ircinput.cpp b/konversation/src/ircinput.cpp
index 814585c..485e1e5 100644
--- a/konversation/src/ircinput.cpp
+++ b/konversation/src/ircinput.cpp
@@ -143,7 +143,7 @@ void IRCInput::resizeContents( int w, int h )
KTextEdit::resizeContents(w,h);
}
-// widget must be only one line high - luckily QT will enforce this via wrappping policy
+// widget must be only one line high - luckily TQt will enforce this via wrappping policy
TQSize IRCInput::sizeHint() const
{
constPolish();
diff --git a/konversation/src/query.cpp b/konversation/src/query.cpp
index c4e070e..01e5cb4 100644
--- a/konversation/src/query.cpp
+++ b/konversation/src/query.cpp
@@ -337,7 +337,7 @@ void Query::textPasted(const TQString& text)
void Query::indicateAway(bool show)
{
- // QT does not redraw the label properly when they are not on screen
+ // TQt does not redraw the label properly when they are not on screen
// while getting hidden, so we remember the "soon to be" state here.
if(isHidden())
{
diff --git a/konversation/src/statuspanel.cpp b/konversation/src/statuspanel.cpp
index e6d2762..265fe29 100644
--- a/konversation/src/statuspanel.cpp
+++ b/konversation/src/statuspanel.cpp
@@ -223,7 +223,7 @@ void StatusPanel::sendFileMenu()
void StatusPanel::indicateAway(bool show)
{
- // QT does not redraw the label properly when they are not on screen
+ // TQt does not redraw the label properly when they are not on screen
// while getting hidden, so we remember the "soon to be" state here.
if(isHidden())
{
diff --git a/konversation/src/viewcontainer.cpp b/konversation/src/viewcontainer.cpp
index a92ef13..94a8106 100644
--- a/konversation/src/viewcontainer.cpp
+++ b/konversation/src/viewcontainer.cpp
@@ -1422,7 +1422,7 @@ void ViewContainer::switchView(TQWidget* newView)
void ViewContainer::showView(ChatWindow* view)
{
- // Don't bring Tab to front if TabWidget is hidden. Otherwise QT gets confused
+ // Don't bring Tab to front if TabWidget is hidden. Otherwise TQt gets confused
// and shows the Tab as active but will display the wrong pane
if (m_tabWidget && m_tabWidget->isVisible())
m_tabWidget->showPage(view);