diff options
Diffstat (limited to 'src/xvplayer.cpp')
-rw-r--r-- | src/xvplayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xvplayer.cpp b/src/xvplayer.cpp index 3319813..4f61fc1 100644 --- a/src/xvplayer.cpp +++ b/src/xvplayer.cpp @@ -648,7 +648,7 @@ int main(int argc, char **argv) { configfile[sizeof (configfile) - 1] = 0; } else if (!strcmp (argv [i], "-cb")) { 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 |