diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:20:03 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:20:03 -0600 |
commit | 78138903f2223cfff5c5137aba4180590e30bdfd (patch) | |
tree | 3a14cb5bb8157c5d46c98c5c6a3d885d605f2624 | |
parent | b5b2212833b4e7088777eb9b06234d9e4c6dfbdc (diff) | |
download | knowit-78138903f2223cfff5c5137aba4180590e30bdfd.tar.gz knowit-78138903f2223cfff5c5137aba4180590e30bdfd.zip |
Rename additional global TQt functions
-rw-r--r-- | src/notes.cpp | 6 |
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; } |