diff -r 4d3415927d2c -r 133e22b5c410 QTfrontend/ui/widget/chatwidget.cpp --- a/QTfrontend/ui/widget/chatwidget.cpp Sat Nov 17 22:07:17 2012 +0400 +++ b/QTfrontend/ui/widget/chatwidget.cpp Sat Nov 17 22:45:30 2012 +0400 @@ -64,7 +64,7 @@ if (orgStyleSheet.isEmpty()) { // load external stylesheet if there is any - QFile extFile(DataManager::instance().findFileForRead("css/chat.css")); + QFile extFile("physfs://css/chat.css"); QFile resFile(":/res/css/chat.css"); @@ -194,12 +194,10 @@ foreach (QString vp, vpList) { - m_helloSounds.append(DataManager::instance().findFileForRead( - QString("Sounds/voices/%1/Hello.ogg").arg(vp))); + m_helloSounds.append(QString("physfs://Sounds/voices/%1/Hello.ogg").arg(vp)); } - m_hilightSound = DataManager::instance().findFileForRead( - "Sounds/beep.ogg"); + m_hilightSound = "physfs://Sounds/beep.ogg"; } @@ -762,8 +760,7 @@ void HWChatWidget::saveStyleSheet() { - QString dest = - DataManager::instance().findFileForWrite("css/chat.css"); + QString dest = "physfs://css/chat.css"; QFile file(dest); if (file.open(QIODevice::WriteOnly | QIODevice::Text))