author | harlekin <harlekin> | 2002-06-28 16:46:52 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-28 16:46:52 (UTC) |
commit | 986a23a683f53ab612be03b56dd9bc7c1aeb3651 (patch) (side-by-side diff) | |
tree | 6447f2738d30aff40126b327272effdf8745597b | |
parent | e72d93a703f4b38109f8f02ec96a759d93b8f91c (diff) | |
download | opie-986a23a683f53ab612be03b56dd9bc7c1aeb3651.zip opie-986a23a683f53ab612be03b56dd9bc7c1aeb3651.tar.gz opie-986a23a683f53ab612be03b56dd9bc7c1aeb3651.tar.bz2 |
update
-rw-r--r-- | noncore/net/opietooth/manager/hciconfwrapper.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/noncore/net/opietooth/manager/hciconfwrapper.cpp b/noncore/net/opietooth/manager/hciconfwrapper.cpp index db6a326..7b2497a 100644 --- a/noncore/net/opietooth/manager/hciconfwrapper.cpp +++ b/noncore/net/opietooth/manager/hciconfwrapper.cpp @@ -1,7 +1,7 @@ -#include "hciconfwrapper.h" + #include "hciconfwrapper.h" #include <qfile.h> #include <qtextstream.h> #include <qstringlist.h> #include <qregexp.h> @@ -88,26 +88,25 @@ namespace OpieTooth { while ( !(str=stream.readLine()).isNull() ) { //qDebug(str); if( (str.contains(key)) > 0 ) { qDebug("Found"); - // still need look if its commented out!!! + // still need to look if its commented out!!! str.simplifyWhiteSpace(); qDebug( key ); if (str.startsWith("#")) { - outstream << (key + " " + value + ";\n"); + str = (key + " " + value + ";"); } else { - str.replace( QRegExp( "\\s*"+key+"\\s+[^\\s][^;]*;" ), key + " " + value + ";\n"); + str = str.replace( QRegExp( "\\s*"+key+"\\s+[^\\s][^;]*;" ), key + " " + value + ";"); } qDebug( str ); - outstream << str; - } else { - outstream << str + "\n"; } + + outstream << str << endl; } f.close(); f2.flush(); f2.close(); } |