Use simpler ifdef style.

This commit is contained in:
sledgehammer999 2017-08-15 21:01:55 +03:00
parent 72fc903f4a
commit 34a69aa0b2
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2
2 changed files with 3 additions and 3 deletions

View file

@ -105,11 +105,11 @@
#include "hidabletabwidget.h"
#include "ui_mainwindow.h"
#if defined (Q_OS_MAC)
#ifdef Q_OS_MAC
#include "macutilities.h"
#endif
#if defined (Q_OS_MAC)
#ifdef Q_OS_MAC
void qt_mac_set_dock_menu(QMenu *menu);
#endif

View file

@ -50,7 +50,7 @@
#include "torrentcontentmodelitem.h"
#include "torrentcontentmodelfolder.h"
#include "torrentcontentmodelfile.h"
#if defined(Q_OS_MAC)
#ifdef Q_OS_MAC
#include "macutilities.h"
#endif