summary refs log tree commit diff
path: root/src/MainWindow.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-12-29 04:28:08 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-12-29 04:52:52 +0100
commitd8ead9573b6fd45e386d54b9aaec4e1c335b10ec (patch)
tree514d00ee26e67fc8bfeff403858e7d4ef276e6e3 /src/MainWindow.cpp
parentuse more literals (diff)
downloadnheko-d8ead9573b6fd45e386d54b9aaec4e1c335b10ec.tar.xz
Reduce allocations using QStringLiteral
Diffstat (limited to 'src/MainWindow.cpp')
-rw-r--r--src/MainWindow.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp
index 846eee2d..0c8273f7 100644
--- a/src/MainWindow.cpp
+++ b/src/MainWindow.cpp
@@ -43,7 +43,7 @@ MainWindow::MainWindow(QWidget *parent)
     instance_ = this;
 
     QMainWindow::setWindowTitle(0);
-    setObjectName("MainWindow");
+    setObjectName(QStringLiteral("MainWindow"));
 
     modal_ = new OverlayModal(this);
 
@@ -53,7 +53,7 @@ MainWindow::MainWindow(QWidget *parent)
     font.setStyleStrategy(QFont::PreferAntialias);
     setFont(font);
 
-    trayIcon_ = new TrayIcon(":/logos/nheko.svg", this);
+    trayIcon_ = new TrayIcon(QStringLiteral(":/logos/nheko.svg"), this);
 
     welcome_page_     = new WelcomePage(this);
     login_page_       = new LoginPage(this);
@@ -150,12 +150,12 @@ MainWindow::MainWindow(QWidget *parent)
 void
 MainWindow::setWindowTitle(int notificationCount)
 {
-    QString name = "nheko";
+    QString name = QStringLiteral("nheko");
 
     if (!userSettings_.data()->profile().isEmpty())
         name += " | " + userSettings_.data()->profile();
     if (notificationCount > 0) {
-        name.append(QString{" (%1)"}.arg(notificationCount));
+        name.append(QString{QStringLiteral(" (%1)")}.arg(notificationCount));
     }
     QMainWindow::setWindowTitle(name);
 }
@@ -176,8 +176,8 @@ MainWindow::event(QEvent *event)
 void
 MainWindow::restoreWindowSize()
 {
-    int savedWidth  = userSettings_->qsettings()->value("window/width").toInt();
-    int savedheight = userSettings_->qsettings()->value("window/height").toInt();
+    int savedWidth  = userSettings_->qsettings()->value(QStringLiteral("window/width")).toInt();
+    int savedheight = userSettings_->qsettings()->value(QStringLiteral("window/height")).toInt();
 
     nhlog::ui()->info("Restoring window size {}x{}", savedWidth, savedheight);
 
@@ -193,8 +193,8 @@ MainWindow::saveCurrentWindowSize()
     auto settings = userSettings_->qsettings();
     QSize current = size();
 
-    settings->setValue("window/width", current.width());
-    settings->setValue("window/height", current.height());
+    settings->setValue(QStringLiteral("window/width"), current.width());
+    settings->setValue(QStringLiteral("window/height"), current.height());
 }
 
 void
@@ -261,7 +261,7 @@ void
 MainWindow::closeEvent(QCloseEvent *event)
 {
     if (WebRTCSession::instance().state() != webrtc::State::DISCONNECTED) {
-        if (QMessageBox::question(this, "nheko", "A call is in progress. Quit?") !=
+        if (QMessageBox::question(this, QStringLiteral("nheko"), QStringLiteral("A call is in progress. Quit?")) !=
             QMessageBox::Yes) {
             event->ignore();
             return;
@@ -295,7 +295,7 @@ MainWindow::hasActiveUser()
 {
     auto settings = userSettings_->qsettings();
     QString prefix;
-    if (userSettings_->profile() != "")
+    if (userSettings_->profile() != QLatin1String(""))
         prefix = "profile/" + userSettings_->profile() + "/";
 
     return settings->contains(prefix + "auth/access_token") &&
@@ -309,7 +309,7 @@ MainWindow::showOverlayProgressBar()
     spinner_ = new LoadingIndicator(this);
     spinner_->setFixedHeight(100);
     spinner_->setFixedWidth(100);
-    spinner_->setObjectName("ChatPageLoadSpinner");
+    spinner_->setObjectName(QStringLiteral("ChatPageLoadSpinner"));
     spinner_->start();
 
     showSolidOverlayModal(spinner_);