-rw-r--r-- | libkdepim/phoneaccess.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libkdepim/phoneaccess.cpp b/libkdepim/phoneaccess.cpp index c0bd6cc..357cd39 100644 --- a/libkdepim/phoneaccess.cpp +++ b/libkdepim/phoneaccess.cpp @@ -41,5 +41,5 @@ void PhoneAccess::writeConfig( QString device, QString connection, QString model #endif //qDebug("save %d ", load ); - QString content; + QString content = "[gammu]\n";; bool write = false; bool addPort = true, addConnection = true, addModel = true; @@ -96,6 +96,4 @@ void PhoneAccess::writeConfig( QString device, QString connection, QString model if ( addConnection ) { - if ( ! write ) - content += "[gammu]\n"; write = true; content += "connection = "; @@ -104,6 +102,4 @@ void PhoneAccess::writeConfig( QString device, QString connection, QString model } if ( addPort ) { - if ( ! write ) - content += "[gammu]\n"; write = true; content += "port = "; @@ -113,6 +109,4 @@ void PhoneAccess::writeConfig( QString device, QString connection, QString model } if ( addModel ) { - if ( ! write ) - content += "[gammu]\n"; write = true; content += "model = "; |