Ticket #6822: win32-mythtv-libs-libmyth-mediamonitor_cpp.patch
| File win32-mythtv-libs-libmyth-mediamonitor_cpp.patch, 750 bytes (added by , 17 years ago) |
|---|
-
libs/libmyth/mythmediamonitor.cpp
103 103 // When ejecting one of multiple devices, present a nice name to the user 104 104 static const QString DevName(MythMediaDevice *d) 105 105 { 106 #ifdef _WIN32 107 QString str = d->getDevicePath(); 108 #else 106 109 QString str = d->getVolumeID(); // First choice, the name of the media 107 110 108 111 if (str.isEmpty()) … … 118 121 // are usually descriptively unique (i.e. usually good enough) 119 122 //else 120 123 // str += " (" + d->getDeviceModel() + ", " + d->getDevicePath() + ')'; 124 #endif 121 125 122 126 return str; 123 127 }
