summaryrefslogtreecommitdiffstats
path: root/gui/platform_other.cpp
diff options
context:
space:
mode:
authorOrochimarufan <orochimarufan.x3@gmail.com>2013-10-18 18:42:41 +0200
committerOrochimarufan <orochimarufan.x3@gmail.com>2013-10-18 18:43:19 +0200
commit78882ff6b13ea8c5e7c14bee51c87f199e9c8a20 (patch)
treefda586f881ed78256a00937c17d0992f261a6b52 /gui/platform_other.cpp
parent205570be32b5cbd40eeb2b7e2d8d4fe116b07f64 (diff)
downloadMultiMC-78882ff6b13ea8c5e7c14bee51c87f199e9c8a20.tar
MultiMC-78882ff6b13ea8c5e7c14bee51c87f199e9c8a20.tar.gz
MultiMC-78882ff6b13ea8c5e7c14bee51c87f199e9c8a20.tar.lz
MultiMC-78882ff6b13ea8c5e7c14bee51c87f199e9c8a20.tar.xz
MultiMC-78882ff6b13ea8c5e7c14bee51c87f199e9c8a20.zip
Fix MainWindow Icon; Fix WM_CLASS issue; now links QX11Extras and libxcb on linux
Diffstat (limited to 'gui/platform_other.cpp')
-rw-r--r--gui/platform_other.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/gui/platform_other.cpp b/gui/platform_other.cpp
new file mode 100644
index 00000000..0d7bcbe7
--- /dev/null
+++ b/gui/platform_other.cpp
@@ -0,0 +1,27 @@
+/* Copyright 2013 MultiMC Contributors
+ *
+ * Authors: Orochimarufan <orochimarufan.x3@gmail.com>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <gui/platform.h>
+/**
+ * Stub for non-X11 platforms
+ * @brief MultiMCPlatform::fixWM_CLASS
+ * @param widget
+ */
+MultiMCPlatform::fixWM_CLASS(QWidget *widget)
+{
+ Q_UNUSED(widget);
+}