summaryrefslogtreecommitdiffstats
path: root/conduits/knotes/knotes-action.cc
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:39:08 -0600
committerTimothy Pearson <[email protected]>2011-12-19 11:39:08 -0600
commit46d967c53bb9221c29b1d357086d600a01a97706 (patch)
treeca7261e0162da2f49d6c9fe73890b56e54212205 /conduits/knotes/knotes-action.cc
parente2574db445c23b812a26740475cbacbbd964639b (diff)
downloadkpilot-46d967c53bb9221c29b1d357086d600a01a97706.tar.gz
kpilot-46d967c53bb9221c29b1d357086d600a01a97706.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'conduits/knotes/knotes-action.cc')
-rw-r--r--conduits/knotes/knotes-action.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/conduits/knotes/knotes-action.cc b/conduits/knotes/knotes-action.cc
index 08acbac..ca32913 100644
--- a/conduits/knotes/knotes-action.cc
+++ b/conduits/knotes/knotes-action.cc
@@ -79,7 +79,7 @@ public:
int memo() const { return memoId; } ;
KNoteID_t note() const { return noteId; } ;
inline bool valid() const { return (memoId>0) && (!noteId.isEmpty()) ; } ;
- TQString toString() const { return CSL1("<%1,%2>").tqarg(noteId).tqarg(memoId); } ;
+ TQString toString() const { return CSL1("<%1,%2>").arg(noteId).arg(memoId); } ;
static NoteAndMemo findNote(const TQValueList<NoteAndMemo> &,KNoteID_pt note);
static NoteAndMemo findMemo(const TQValueList<NoteAndMemo> &,int memo);
@@ -269,7 +269,7 @@ bool KNotesAction::openKNotesResource()
}
else
{
- emit logError( i18n("Could not load the resource at: %1").tqarg(mURL.path()) );
+ emit logError( i18n("Could not load the resource at: %1").arg(mURL.path()) );
return false;
}
}
@@ -853,18 +853,18 @@ void KNotesAction::cleanupMemos()
case Init : return CSL1("Init");
case NewNotesToPilot :
return CSL1("NewNotesToPilot key=%1");
- // TODO DCOP_REMOVAL .tqarg(fP->fIndex.key());
+ // TODO DCOP_REMOVAL .arg(fP->fIndex.key());
case ModifiedNotesToPilot :
return CSL1("ModifiedNotesToPilot key=%1");
- //TODO DCOP_REMOVAL .tqarg(fP->fIndex.key());
+ //TODO DCOP_REMOVAL .arg(fP->fIndex.key());
case MemosToKNotes :
return CSL1("MemosToKNotes rec=%1")
- .tqarg(fP->fRecordIndex);
+ .arg(fP->fRecordIndex);
case Cleanup : return CSL1("Cleanup");
case Done :
return CSL1("Done");
default :
- return CSL1("Unknown (%1)").tqarg(fActionStatus);
+ return CSL1("Unknown (%1)").arg(fActionStatus);
}
}