aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2014-06-16 18:25:33 -0400
committerJeff Morriss <jeff.morriss.ws@gmail.com>2014-06-16 23:14:05 +0000
commitf113306e0ed0efc77eb9655c6196243af7fce6ce (patch)
treea2eeb3d6e90ff1b9d00d60f78f17a8fc7e65645e /ui/qt
parent048646d322a79ef0f4b609527bf5a5b5bfe7a199 (diff)
More Python-bindings removal.
Change-Id: I4d82175781e65c73179f4c8e737a7900cb050bce Reviewed-on: https://code.wireshark.org/review/2283 Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
Diffstat (limited to 'ui/qt')
-rw-r--r--ui/qt/about_dialog.cpp5
-rw-r--r--ui/qt/splash_overlay.cpp3
2 files changed, 0 insertions, 8 deletions
diff --git a/ui/qt/about_dialog.cpp b/ui/qt/about_dialog.cpp
index b8e3bc20fb..9be3ce1336 100644
--- a/ui/qt/about_dialog.cpp
+++ b/ui/qt/about_dialog.cpp
@@ -210,11 +210,6 @@ AboutDialog::AboutDialog(QWidget *parent) :
message += about_folders_row("Global Plugins", get_plugin_dir(), "dissector plugins");
#endif
-#ifdef HAVE_PYTHON
- /* global python bindings */
- message += about_folders_row("Python Bindings", get_wspython_dir(), "python bindings");
-#endif
-
#ifdef HAVE_GEOIP
/* GeoIP */
path = geoip_db_get_paths();
diff --git a/ui/qt/splash_overlay.cpp b/ui/qt/splash_overlay.cpp
index ea94ee742f..97e0f2a9a9 100644
--- a/ui/qt/splash_overlay.cpp
+++ b/ui/qt/splash_overlay.cpp
@@ -60,9 +60,6 @@ SplashOverlay::SplashOverlay(QWidget *parent) :
#ifdef HAVE_LUA
register_add++; /* additional one for lua plugins */
#endif
-#ifdef HAVE_PYTHON
- register_add += 2; /* additional 2 for python register and handoff */
-#endif
so_ui_->progressBar->setMaximum((int)register_count() + register_add);
time_.start();