author | sandman <sandman> | 2002-06-16 01:27:37 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-06-16 01:27:37 (UTC) |
commit | eb414eb5d393f0f727e833fc8901aef096558997 (patch) (unidiff) | |
tree | f4b8d8ac34c7dc1b44dda8d25cd37e3ae1dffa62 /libopie | |
parent | e4d3c7c1aab2b54262aafdd655edbc78d21d5ac5 (diff) | |
download | opie-eb414eb5d393f0f727e833fc8901aef096558997.zip opie-eb414eb5d393f0f727e833fc8901aef096558997.tar.gz opie-eb414eb5d393f0f727e833fc8901aef096558997.tar.bz2 |
Fixed typo in iPAQ detection routine .. model enum really works now
-rw-r--r-- | libopie/ohwinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/ohwinfo.cpp b/libopie/ohwinfo.cpp index ae07c6c..30c47c8 100644 --- a/libopie/ohwinfo.cpp +++ b/libopie/ohwinfo.cpp | |||
@@ -31,7 +31,7 @@ OHwInfo::OHwInfo ( ) | |||
31 | 31 | ||
32 | if ( f. open ( IO_ReadOnly )) { | 32 | if ( f. open ( IO_ReadOnly )) { |
33 | QTextStream ts ( &f ); | 33 | QTextStream ts ( &f ); |
34 | m_data-> m_modelstr = ts. readLine ( ); | 34 | m_data-> m_modelstr = "H" + ts. readLine ( ); |
35 | 35 | ||
36 | if ( m_data-> m_modelstr == "H3100" ) | 36 | if ( m_data-> m_modelstr == "H3100" ) |
37 | m_data-> m_model = OMODEL_iPAQ_H31xx; | 37 | m_data-> m_model = OMODEL_iPAQ_H31xx; |