summaryrefslogtreecommitdiff
path: root/noncore/applets
authorllornkcor <llornkcor>2002-09-30 03:45:54 (UTC)
committer llornkcor <llornkcor>2002-09-30 03:45:54 (UTC)
commit75dccdfe90324e9ff2426930ae185c3a6bdab734 (patch) (side-by-side diff)
tree67891208d558131706f8496035dac1c51a07cc2c /noncore/applets
parent67a48f57a13163d21cf7ac186649f9041f3e41b0 (diff)
downloadopie-75dccdfe90324e9ff2426930ae185c3a6bdab734.zip
opie-75dccdfe90324e9ff2426930ae185c3a6bdab734.tar.gz
opie-75dccdfe90324e9ff2426930ae185c3a6bdab734.tar.bz2
remove qDebug
Diffstat (limited to 'noncore/applets') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/notesapplet/notes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/applets/notesapplet/notes.cpp b/noncore/applets/notesapplet/notes.cpp
index f2dbabf..92fdb0a 100644
--- a/noncore/applets/notesapplet/notes.cpp
+++ b/noncore/applets/notesapplet/notes.cpp
@@ -307,25 +307,25 @@ void NotesControl::save() {
FileManager fm;
if ( !fm.saveFile( *doc, rt ) ) {
}
oldDocName=docname;
edited=false;
- qDebug("save");
+// qDebug("save");
if (doPopulate)
populateBox();
}
cfg.writeEntry( "LastDoc",oldDocName );
cfg.write();
}
}
void NotesControl::populateBox() {
box->clear();
- qDebug("populate");
+// qDebug("populate");
Config cfg("Notes");
cfg.setGroup("Docs");
int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 );
QStringList list;
QString entryName;
for ( int i = 0; i < noOfFiles; i++ ) {