Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mumble/About.cpp')
-rw-r--r--src/mumble/About.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mumble/About.cpp b/src/mumble/About.cpp
index abf406a47..cfe211bb4 100644
--- a/src/mumble/About.cpp
+++ b/src/mumble/About.cpp
@@ -12,8 +12,6 @@
#include <QtWidgets/QPushButton>
-// We define a global macro called 'g'. This can lead to issues when included code uses 'g' as a type or parameter name
-// (like protobuf 3.7 does). As such, for now, we have to make this our last include.
#include "Global.h"
#define DOQUOTE(arg) #arg
@@ -53,7 +51,7 @@ AboutDialog::AboutDialog(QWidget *p) : QDialog(p) {
QWidget *about = new QWidget(qtwTab);
QLabel *icon = new QLabel(about);
- icon->setPixmap(g.mw->qiIcon.pixmap(g.mw->qiIcon.actualSize(QSize(128, 128))));
+ icon->setPixmap(Global::get().mw->qiIcon.pixmap(Global::get().mw->qiIcon.actualSize(QSize(128, 128))));
QLabel *text = new QLabel(about);
text->setTextInteractionFlags(Qt::TextBrowserInteraction);