summaryrefslogtreecommitdiffstats
path: root/konversation/src/ircviewbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/ircviewbox.cpp')
-rw-r--r--konversation/src/ircviewbox.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/konversation/src/ircviewbox.cpp b/konversation/src/ircviewbox.cpp
index 24401dd..9318cbf 100644
--- a/konversation/src/ircviewbox.cpp
+++ b/konversation/src/ircviewbox.cpp
@@ -84,14 +84,14 @@ void IRCViewBox::searchNext(bool reversed)
if (match)
{
m_searchBar->setHasMatch(true);
- m_searchBar->setStatus(TQPixmap(), "");
+ m_searchBar->settqStatus(TQPixmap(), "");
return;
}
if (!m_matchedOnce)
{
m_searchBar->setHasMatch(false);
- m_searchBar->setStatus(getIcon("messagebox_warning"),
+ m_searchBar->settqStatus(getIcon("messagebox_warning"),
i18n("Phrase not found"));
return;
}
@@ -105,13 +105,13 @@ void IRCViewBox::searchNext(bool reversed)
if (!match)
{
m_searchBar->setHasMatch(false);
- m_searchBar->setStatus(getIcon("messagebox_warning"),
+ m_searchBar->settqStatus(getIcon("messagebox_warning"),
i18n("Phrase not found"));
return;
}
m_searchBar->setHasMatch(true);
- m_searchBar->setStatus(getIcon("messagebox_info"),
+ m_searchBar->settqStatus(getIcon("messagebox_info"),
i18n("Wrapped search"));
}
@@ -126,12 +126,12 @@ void IRCViewBox::slotSearchChanged(const TQString& pattern)
if (match)
{
m_searchBar->setHasMatch(true);
- m_searchBar->setStatus(TQPixmap(), "");
+ m_searchBar->settqStatus(TQPixmap(), "");
}
else
{
m_searchBar->setHasMatch(false);
- m_searchBar->setStatus(getIcon("messagebox_warning"),
+ m_searchBar->settqStatus(getIcon("messagebox_warning"),
i18n("Phrase not found"));
}