From 1d2d91d0913f3f7a3dcf0960da61534f5f4dd871 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Fri, 23 Mar 2007 14:10:16 +0000 Subject: [PATCH] - Added a message saying if upnp is enabled or not --- src/src.pro | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/src.pro b/src/src.pro index 186641460..6432405d2 100644 --- a/src/src.pro +++ b/src/src.pro @@ -104,7 +104,8 @@ TRANSLATIONS = $$LANG_PATH/qbittorrent_fr.ts \ $$LANG_PATH/qbittorrent_ro.ts \ $$LANG_PATH/qbittorrent_pt.ts \ $$LANG_PATH/qbittorrent_nb.ts \ - $$LANG_PATH/qbittorrent_fi.ts + $$LANG_PATH/qbittorrent_fi.ts \ + $$LANG_PATH/qbittorrent_da.ts # Source code HEADERS += GUI.h misc.h options_imp.h about_imp.h \ @@ -125,7 +126,10 @@ SOURCES += GUI.cpp \ createtorrent_imp.cpp \ bittorrent.cpp !contains(DEFINES, NO_UPNP){ + message(UPnP Enabled) HEADERS += UPnP.h SOURCES += UPnP.cpp +}else{ + message(UPnP Disabled) }