1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-28 15:34:16 +00:00

Use simpler ifdef style.

This commit is contained in:
sledgehammer999 2017-08-15 21:01:55 +03:00
parent 62b956946f
commit c87c1d2359
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