Fix MainWindow Icon; Fix WM_CLASS issue; now links QX11Extras and libxcb on linux

This commit is contained in:
Orochimarufan
2013-10-18 18:42:41 +02:00
parent 205570be32
commit 78882ff6b1
19 changed files with 169 additions and 3 deletions

View File

@ -4,12 +4,15 @@
#include <QScrollBar>
#include <QMessageBox>
#include <gui/platform.h>
ConsoleWindow::ConsoleWindow(MinecraftProcess *mcproc, QWidget *parent) :
QDialog(parent),
ui(new Ui::ConsoleWindow),
m_mayclose(true),
proc(mcproc)
{
MultiMCPlatform::fixWM_CLASS(this);
ui->setupUi(this);
connect(mcproc, SIGNAL(ended()), this, SLOT(onEnded()));
}