summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/device/odevice.cpp
Unidiff
Diffstat (limited to 'libopie2/opiecore/device/odevice.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/libopie2/opiecore/device/odevice.cpp b/libopie2/opiecore/device/odevice.cpp
index 8f5be8b..e4233eb 100644
--- a/libopie2/opiecore/device/odevice.cpp
+++ b/libopie2/opiecore/device/odevice.cpp
@@ -30,24 +30,25 @@
30 30
31#include "odevice_beagle.h" 31#include "odevice_beagle.h"
32#include "odevice_ipaq.h" 32#include "odevice_ipaq.h"
33#include "odevice_mypal.h" 33#include "odevice_mypal.h"
34#include "odevice_jornada.h" 34#include "odevice_jornada.h"
35#include "odevice_ramses.h" 35#include "odevice_ramses.h"
36#include "odevice_simpad.h" 36#include "odevice_simpad.h"
37#include "odevice_yopy.h" 37#include "odevice_yopy.h"
38#include "odevice_zaurus.h" 38#include "odevice_zaurus.h"
39#include "odevice_genuineintel.h" 39#include "odevice_genuineintel.h"
40#include "odevice_htc.h" 40#include "odevice_htc.h"
41#include "odevice_motorola_ezx.h" 41#include "odevice_motorola_ezx.h"
42#include "odevice_palm.h"
42 43
43/* QT */ 44/* QT */
44#include <qapplication.h> 45#include <qapplication.h>
45#include <qfile.h> 46#include <qfile.h>
46#include <qtextstream.h> 47#include <qtextstream.h>
47#include <qwindowsystem_qws.h> 48#include <qwindowsystem_qws.h>
48 49
49/* OPIE */ 50/* OPIE */
50#include <qpe/config.h> 51#include <qpe/config.h>
51#include <qpe/sound.h> 52#include <qpe/sound.h>
52#include <qpe/qcopenvelope_qws.h> 53#include <qpe/qcopenvelope_qws.h>
53#include <qpe/sound.h> 54#include <qpe/sound.h>
@@ -139,24 +140,25 @@ ODevice *ODevice::inst()
139 { 140 {
140 qDebug( "ODevice() - found '%s'", (const char*) line ); 141 qDebug( "ODevice() - found '%s'", (const char*) line );
141 cpu_info = line; 142 cpu_info = line;
142 if ( line.contains( "sharp", false ) ) dev = new Internal::Zaurus(); 143 if ( line.contains( "sharp", false ) ) dev = new Internal::Zaurus();
143 else if ( line.contains( "ipaq", false ) ) dev = new Internal::iPAQ(); 144 else if ( line.contains( "ipaq", false ) ) dev = new Internal::iPAQ();
144 else if ( line.contains( "mypal", false ) ) dev = new Internal::MyPal(); 145 else if ( line.contains( "mypal", false ) ) dev = new Internal::MyPal();
145 else if ( line.contains( "simpad", false ) ) dev = new Internal::SIMpad(); 146 else if ( line.contains( "simpad", false ) ) dev = new Internal::SIMpad();
146 else if ( line.contains( "jornada", false ) ) dev = new Internal::Jornada(); 147 else if ( line.contains( "jornada", false ) ) dev = new Internal::Jornada();
147 else if ( line.contains( "ramses", false ) ) dev = new Internal::Ramses(); 148 else if ( line.contains( "ramses", false ) ) dev = new Internal::Ramses();
148 else if ( line.contains( "Tradesquare.NL", false ) ) dev = new Internal::Beagle(); 149 else if ( line.contains( "Tradesquare.NL", false ) ) dev = new Internal::Beagle();
149 else if ( line.contains( "HTC", false ) ) dev = new Internal::HTC(); 150 else if ( line.contains( "HTC", false ) ) dev = new Internal::HTC();
150 else if ( line.contains( "Motorola", false ) ) dev = new Internal::Motorola_EZX(); 151 else if ( line.contains( "Motorola", false ) ) dev = new Internal::Motorola_EZX();
152 else if ( line.contains( "Palm", false ) ) dev = new Internal::Palm();
151 153
152 else qWarning( "ODevice() - unknown hardware - using default." ); 154 else qWarning( "ODevice() - unknown hardware - using default." );
153 break; 155 break;
154 } else if ( line.startsWith( "vendor_id" ) ) { 156 } else if ( line.startsWith( "vendor_id" ) ) {
155 qDebug( "ODevice() - found '%s'", (const char*) line ); 157 qDebug( "ODevice() - found '%s'", (const char*) line );
156 cpu_info = line; 158 cpu_info = line;
157 if( line.contains( "genuineintel", false ) ) { 159 if( line.contains( "genuineintel", false ) ) {
158 dev = new Internal::GenuineIntel(); 160 dev = new Internal::GenuineIntel();
159 break; 161 break;
160 } 162 }
161 } 163 }
162 } 164 }