diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 63c4fb318b4b6c0c22fce659f0029e4b21112c86 (patch) | |
tree | 9bb206b2d90ed5fe44cea4fcb5732b6741eaaa3e /src/xineplayer.cpp | |
parent | 0d5a05983c0c2ba7a51bdeb1688dc232bacfa8ff (diff) | |
download | kmplayer-63c4fb318b4b6c0c22fce659f0029e4b21112c86.tar.gz kmplayer-63c4fb318b4b6c0c22fce659f0029e4b21112c86.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmplayer@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/xineplayer.cpp')
-rw-r--r-- | src/xineplayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xineplayer.cpp b/src/xineplayer.cpp index 8bb391f..b0dd3d8 100644 --- a/src/xineplayer.cpp +++ b/src/xineplayer.cpp @@ -1093,7 +1093,7 @@ int main(int argc, char **argv) { configfile[sizeof (configfile) - 1] = 0; } else if (!strcmp (argv [i], "-cb") && ++i < argc) { TQString str = argv [i]; - int pos = str.tqfind ('/'); + int pos = str.find ('/'); if (pos > -1) { fprintf (stderr, "callback is %s %s\n", str.left (pos).ascii (), str.mid (pos + 1).ascii ()); callback = new KMPlayer::Callback_stub |