From 78138903f2223cfff5c5137aba4180590e30bdfd Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:20:03 -0600 Subject: Rename additional global TQt functions --- src/notes.cpp | 6 +++--- 1 file 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; } -- cgit v1.2.3