summaryrefslogtreecommitdiff
path: root/games/xptools/files/patch-GUI__Application.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'games/xptools/files/patch-GUI__Application.cpp')
-rw-r--r--games/xptools/files/patch-GUI__Application.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/games/xptools/files/patch-GUI__Application.cpp b/games/xptools/files/patch-GUI__Application.cpp
deleted file mode 100644
index 3348c3c83a53..000000000000
--- a/games/xptools/files/patch-GUI__Application.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/GUI/GUI_Application.cpp.orig 2018-07-05 06:04:16 UTC
-+++ src/GUI/GUI_Application.cpp
-@@ -114,7 +114,7 @@ void GUI_QtMenu::showEvent( QShowEvent *
- {
- QList<QAction*> actlist = this->actions();
- QList<QAction*>::iterator it = actlist.begin();
-- for (it ; it != actlist.end(); ++it)
-+ for (it = actlist.begin(); it != actlist.end(); ++it)
- {
- int cmd = (*it)->data().toInt();
- if (cmd)
-@@ -136,7 +136,7 @@ void GUI_QtMenu::hideEvent( QHideEvent *
- // items and their shortcut-action while showevent .
- QList<QAction*> actlist = this->actions();
- QList<QAction*>::iterator it = actlist.begin();
-- for (it ; it != actlist.end(); ++it)
-+ for (it = actlist.begin() ; it != actlist.end(); ++it)
- {
- int cmd = (*it)->data().toInt();
- if (cmd) (*it)->setEnabled(true);