Changeset 181 for smplayer/trunk/src/smplayer.cpp
- Timestamp:
- Aug 31, 2016, 5:31:04 PM (9 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 179
- Property svn:mergeinfo changed
-
smplayer/trunk/src/smplayer.cpp
r176 r181 584 584 qDebug("Compiled with Qt v. %s, using %s", QT_VERSION_STR, qVersion()); 585 585 586 qDebug( " * application path: '%s'", Paths::appPath().toUtf8().data());587 qDebug( " * data path: '%s'", Paths::dataPath().toUtf8().data());588 qDebug( " * translation path: '%s'", Paths::translationPath().toUtf8().data());589 qDebug( " * doc path: '%s'", Paths::docPath().toUtf8().data());590 qDebug( " * themes path: '%s'", Paths::themesPath().toUtf8().data());591 qDebug( " * shortcuts path: '%s'", Paths::shortcutsPath().toUtf8().data());592 qDebug( " * config path: '%s'", Paths::configPath().toUtf8().data());593 qDebug( " * ini path: '%s'", Paths::iniPath().toUtf8().data());594 qDebug( " * file for subtitles' styles: '%s'", Paths::subtitleStyleFile().toUtf8().data());595 qDebug( " * current path: '%s'", QDir::currentPath().toUtf8().data());586 qDebug() << " * application path:" << Paths::appPath(); 587 qDebug() << " * data path:" << Paths::dataPath(); 588 qDebug() << " * translation path:" << Paths::translationPath(); 589 qDebug() << " * doc path:" << Paths::docPath(); 590 qDebug() << " * themes path:" << Paths::themesPath(); 591 qDebug() << " * shortcuts path:" << Paths::shortcutsPath(); 592 qDebug() << " * config path:" << Paths::configPath(); 593 qDebug() << " * ini path:" << Paths::iniPath(); 594 qDebug() << " * file for subtitles' styles:" << Paths::subtitleStyleFile(); 595 qDebug() << " * current path:" << QDir::currentPath(); 596 596 #ifdef FONTS_HACK 597 qDebug( " * font path: '%s'", Paths::fontPath().toUtf8().data());597 qDebug() << " * font path:" << Paths::fontPath(); 598 598 #endif 599 599 } … … 659 659 line2 = "CRITICAL: " + orig_line; 660 660 break; 661 #if QT_VERSION >= 0x050500 662 case QtInfoMsg: 663 break; 664 #endif 661 665 } 662 666
Note:
See TracChangeset
for help on using the changeset viewer.