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
@@ -30,8 +30,13 @@
#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 */
#include <qapplication.h>
@@ -39,8 +44,6 @@
#include <qfile.h>
#include <qtextstream.h>
-#define OPIE_IMPROVE_GUI_LATENCY 1
-
OManufacturerDB* OManufacturerDB::_instance = 0;
OManufacturerDB* OManufacturerDB::instance()
@@ -56,6 +59,9 @@ 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;
if ( !QFile::exists( filename ) )
@@ -104,6 +110,9 @@ OManufacturerDB::OManufacturerDB()
#endif
}
odebug << "OManufacturerDB: manufacturer list completed." << oendl;
+ #ifdef OPIE_IMPROVE_GUI_LATENCY
+ Global::statusMessage( "Manufacturers Complete..." );
+ #endif
}
}