Changeset 128 for smplayer/trunk/src/helper.cpp
- Timestamp:
- Mar 29, 2012, 4:53:15 PM (13 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 127
- Property svn:mergeinfo changed
-
smplayer/trunk/src/helper.cpp
r124 r128 220 220 qDebug("Helper::searchForConsecutiveFiles: trying to find consecutive files"); 221 221 while ( ( pos = rx.indexIn(basename, pos) ) != -1 ) { 222 qDebug("Helper::searchForConsecutiveFiles: captured: %s",rx.cap(1).to StdString().c_str());222 qDebug("Helper::searchForConsecutiveFiles: captured: %s",rx.cap(1).toUtf8().constData()); 223 223 digits = rx.cap(1).length(); 224 224 current_number = rx.cap(1).toInt() + 1; … … 226 226 next_name.replace(QRegExp("([\\[\\]?*])"), "[\\1]"); 227 227 next_name += "*." + extension; 228 qDebug("Helper::searchForConsecutiveFiles: next name = %s",next_name.to StdString().c_str());228 qDebug("Helper::searchForConsecutiveFiles: next name = %s",next_name.toUtf8().constData()); 229 229 matching_files = dir.entryList((QStringList)next_name); 230 230
Note:
See TracChangeset
for help on using the changeset viewer.