mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
Merge remote-tracking branch 'scrawl/master'
This commit is contained in:
commit
47bac13749
@ -20,7 +20,7 @@ void CSVDoc::LoadingDocument::closeEvent (QCloseEvent *event)
|
||||
CSVDoc::LoadingDocument::LoadingDocument (CSMDoc::Document *document)
|
||||
: mDocument (document), mAborted (false), mMessages (0), mTotalRecords (0)
|
||||
{
|
||||
setWindowTitle (("Opening " + document->getSavePath().filename().string()).c_str());
|
||||
setWindowTitle (QString::fromUtf8((std::string("Opening ") + document->getSavePath().filename().string()).c_str()));
|
||||
|
||||
setMinimumWidth (400);
|
||||
|
||||
|
@ -26,7 +26,7 @@ void CSVDoc::SubView::updateUserSetting (const QString &, const QStringList &)
|
||||
void CSVDoc::SubView::setUniversalId (const CSMWorld::UniversalId& id)
|
||||
{
|
||||
mUniversalId = id;
|
||||
setWindowTitle (mUniversalId.toString().c_str());
|
||||
setWindowTitle (QString::fromUtf8(mUniversalId.toString().c_str()));
|
||||
}
|
||||
|
||||
void CSVDoc::SubView::closeEvent (QCloseEvent *event)
|
||||
|
@ -324,7 +324,7 @@ void CSVDoc::View::updateTitle()
|
||||
if (hideTitle)
|
||||
stream << " - " << mSubViews.at (0)->getTitle();
|
||||
|
||||
setWindowTitle (stream.str().c_str());
|
||||
setWindowTitle (QString::fromUtf8(stream.str().c_str()));
|
||||
}
|
||||
|
||||
void CSVDoc::View::updateSubViewIndicies(SubView *view)
|
||||
|
@ -248,7 +248,7 @@ bool CSVDoc::ViewManager::showModifiedDocumentMessageBox (CSVDoc::View *view)
|
||||
QMessageBox messageBox(view);
|
||||
CSMDoc::Document *document = view->getDocument();
|
||||
|
||||
messageBox.setWindowTitle (document->getSavePath().filename().string().c_str());
|
||||
messageBox.setWindowTitle (QString::fromUtf8(document->getSavePath().filename().string().c_str()));
|
||||
messageBox.setText ("The document has been modified.");
|
||||
messageBox.setInformativeText ("Do you want to save your changes?");
|
||||
messageBox.setStandardButtons (QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);
|
||||
|
@ -142,13 +142,13 @@ namespace MWGui
|
||||
|
||||
for (unsigned int i=0; i<mAvailableHeads.size(); ++i)
|
||||
{
|
||||
if (mAvailableHeads[i] == proto.mHead)
|
||||
if (Misc::StringUtils::ciEqual(mAvailableHeads[i], proto.mHead))
|
||||
mFaceIndex = i;
|
||||
}
|
||||
|
||||
for (unsigned int i=0; i<mAvailableHairs.size(); ++i)
|
||||
{
|
||||
if (mAvailableHairs[i] == proto.mHair)
|
||||
if (Misc::StringUtils::ciEqual(mAvailableHairs[i], proto.mHair))
|
||||
mHairIndex = i;
|
||||
}
|
||||
|
||||
|
@ -449,7 +449,7 @@ void ContentSelectorModel::ContentModel::addFiles(const QString &path)
|
||||
ToUTF8::Utf8Encoder encoder =
|
||||
ToUTF8::calculateEncoding(mEncoding.toStdString());
|
||||
fileReader.setEncoder(&encoder);
|
||||
fileReader.open(dir.absoluteFilePath(path).toStdString());
|
||||
fileReader.open(std::string(dir.absoluteFilePath(path).toUtf8().constData()));
|
||||
|
||||
EsmFile *file = new EsmFile(path);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user