Browse Source
Merge pull request #1566 from lioncash/str
bootmanager: Use QStringLiteral instead of std::string to represent the window title.
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
4 deletions
-
src/yuzu/bootmanager.cpp
|
|
|
@ -8,7 +8,6 @@ |
|
|
|
|
|
|
|
#include "common/microprofile.h"
|
|
|
|
#include "common/scm_rev.h"
|
|
|
|
#include "common/string_util.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/frontend/framebuffer_layout.h"
|
|
|
|
#include "core/settings.h"
|
|
|
|
@ -107,9 +106,8 @@ private: |
|
|
|
GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread) |
|
|
|
: QWidget(parent), child(nullptr), emu_thread(emu_thread) { |
|
|
|
|
|
|
|
std::string window_title = fmt::format("yuzu {} | {}-{}", Common::g_build_name, |
|
|
|
Common::g_scm_branch, Common::g_scm_desc); |
|
|
|
setWindowTitle(QString::fromStdString(window_title)); |
|
|
|
setWindowTitle(QStringLiteral("yuzu %1 | %2-%3") |
|
|
|
.arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc)); |
|
|
|
setAttribute(Qt::WA_AcceptTouchEvents); |
|
|
|
|
|
|
|
InputCommon::Init(); |
|
|
|
|