summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opienet/omanufacturerdb.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/libopie2/opienet/omanufacturerdb.cpp b/libopie2/opienet/omanufacturerdb.cpp
index f61270b..2da549c 100644
--- a/libopie2/opienet/omanufacturerdb.cpp
+++ b/libopie2/opienet/omanufacturerdb.cpp
@@ -31,6 +31,11 @@
#include "omanufacturerdb.h"
-/* OPIE CORE */
+#define OPIE_IMPROVE_GUI_LATENCY 1
+
+/* OPIE */
#include <opie2/odebug.h>
+#ifdef OPIE_IMPROVE_GUI_LATENCY
+#include <qpe/global.h>
+#endif
/* QT */
@@ -40,6 +45,4 @@
#include <qtextstream.h>
-#define OPIE_IMPROVE_GUI_LATENCY 1
-
OManufacturerDB* OManufacturerDB::_instance = 0;
@@ -57,4 +60,7 @@ OManufacturerDB* OManufacturerDB::instance()
OManufacturerDB::OManufacturerDB()
{
+ #ifdef OPIE_IMPROVE_GUI_LATENCY
+ Global::statusMessage( "Reading Manufacturers..." );
+ #endif
QString filename( "/etc/manufacturers" );
odebug << "OManufacturerDB: trying to read " << filename << oendl;
@@ -105,4 +111,7 @@ OManufacturerDB::OManufacturerDB()
}
odebug << "OManufacturerDB: manufacturer list completed." << oendl;
+ #ifdef OPIE_IMPROVE_GUI_LATENCY
+ Global::statusMessage( "Manufacturers Complete..." );
+ #endif
}
}