author | eilers <eilers> | 2003-11-17 17:32:06 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-11-17 17:32:06 (UTC) |
commit | d46685864bb18ffa82d5dac4fcfb1ae96471e89a (patch) (side-by-side diff) | |
tree | ab5e53d5d777aea2b8baf62eeca8cd9d5605bbcf | |
parent | e8bba52dc9443d3aadcc2c221fa62ba37ea5c712 (diff) | |
download | opie-d46685864bb18ffa82d5dac4fcfb1ae96471e89a.zip opie-d46685864bb18ffa82d5dac4fcfb1ae96471e89a.tar.gz opie-d46685864bb18ffa82d5dac4fcfb1ae96471e89a.tar.bz2 |
Shit .. missed a wrong ")".. Odevice compiles now.. !
-rw-r--r-- | libopie/odevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 58254a7..71ed9e4 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp @@ -1510,33 +1510,33 @@ bool Zaurus::isZaurus() QTextStream ts ( &f ); QString line; while( line = ts. readLine ( ) ) { if ( line. left ( 8 ) == "Hardware" ) break; } int loc = line. find ( ":" ); if ( loc != -1 ) model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); if ( model == "Sharp-Collie" || model == "Collie" || model == "SHARP Corgi" || model == "SHARP Shepherd" || model == "SHARP Poodle" - || model == "SHARP Husky" ) + || model == "SHARP Husky" ) is_zaurus = true; } return is_zaurus; } void Zaurus::init ( ) { d-> m_vendorstr = "Sharp"; d-> m_vendor = Vendor_Sharp; m_embedix = true; // Not openzaurus means: It has an embedix kernel ! // QFile f ( "/proc/filesystems" ); QString model; |