Ignore:
Timestamp:
Feb 21, 2014, 4:44:11 PM (11 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update vendor to 0.8.6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • smplayer/vendor/current/src/mplayerprocess.cpp

    r140 r154  
    9797                //qDebug("MplayerProcess::writeToStdin");
    9898#if !defined(Q_OS_OS2)
     99                #ifdef Q_OS_WIN
     100                write( text.toUtf8() + "\n");
     101                #else
    99102                write( text.toLocal8Bit() + "\n");
     103                #endif
    100104#else
    101105                MPpipeWrite( text.toLocal8Bit() + "\n");
     
    228232    QString line = ColorUtils::stripColorsTags(QString::fromLocal8Bit(ba));
    229233#else
     234        #ifdef Q_OS_WIN
     235        QString line = QString::fromUtf8(ba);
     236        #else
    230237        QString line = QString::fromLocal8Bit(ba);
     238        #endif
    231239#endif
    232240
Note: See TracChangeset for help on using the changeset viewer.