summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/hciconfwrapper.cpp11
1 files changed, 5 insertions, 6 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
@@ -70,46 +70,45 @@ namespace OpieTooth {
QFile f2( m_fileName );
if ( !f.open( IO_ReadOnly) ) {
qDebug("Could not open readonly");
return;
}
if ( !f2.open( IO_ReadWrite ) ) {
qDebug("Just readonly - not enough");
return;
}
QStringList list;
qDebug(m_fileName);
QTextStream stream ( &f);
QTextStream outstream (&f2);
QString str;
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();
}
}