summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:20:03 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:20:03 -0600
commit78138903f2223cfff5c5137aba4180590e30bdfd (patch)
tree3a14cb5bb8157c5d46c98c5c6a3d885d605f2624
parentb5b2212833b4e7088777eb9b06234d9e4c6dfbdc (diff)
downloadknowit-78138903.tar.gz
knowit-78138903.zip
Rename additional global TQt functions
-rw-r--r--src/notes.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/notes.cpp b/src/notes.cpp
index 1bc32d8..16ee565 100644
--- a/src/notes.cpp
+++ b/src/notes.cpp
@@ -117,7 +117,7 @@ void TNotesCollection::addNote(TQListViewItem* item, const TQString& s)
void TNotesCollection::removeNote(TQListViewItem* item)
{
TNote* note = find(item);
- if (!note) qWarning("Internal error while removing note\n");
+ if (!note) tqWarning("Internal error while removing note\n");
else {
TQListViewItem* parent = item->parent();
for (TQListViewItemIterator it(item); it.current() &&
@@ -133,7 +133,7 @@ bool TNotesCollection::changeNote(TQListViewItem* item, const TQString& s)
{
TNote* changed = find(item);
if (!changed) {
- qWarning("Internal error while changing note\n");
+ tqWarning("Internal error while changing note\n");
return false;
}
if (changed->change(s))
@@ -153,7 +153,7 @@ const TQString& TNotesCollection::text(TQListViewItem* item)
{
TNote* note = find(item);
if (!note)
- qFatal("Internal error while accessing note text\n");
+ tqFatal("Internal error while accessing note text\n");
return note->text;
}