summaryrefslogtreecommitdiff
path: root/noncore/applets/notesapplet/notes.cpp
authorllornkcor <llornkcor>2002-09-30 03:45:54 (UTC)
committer llornkcor <llornkcor>2002-09-30 03:45:54 (UTC)
commit75dccdfe90324e9ff2426930ae185c3a6bdab734 (patch) (unidiff)
tree67891208d558131706f8496035dac1c51a07cc2c /noncore/applets/notesapplet/notes.cpp
parent67a48f57a13163d21cf7ac186649f9041f3e41b0 (diff)
downloadopie-75dccdfe90324e9ff2426930ae185c3a6bdab734.zip
opie-75dccdfe90324e9ff2426930ae185c3a6bdab734.tar.gz
opie-75dccdfe90324e9ff2426930ae185c3a6bdab734.tar.bz2
remove qDebug
Diffstat (limited to 'noncore/applets/notesapplet/notes.cpp') (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() {
307 FileManager fm; 307 FileManager fm;
308 if ( !fm.saveFile( *doc, rt ) ) { 308 if ( !fm.saveFile( *doc, rt ) ) {
309 } 309 }
310 310
311 oldDocName=docname; 311 oldDocName=docname;
312 edited=false; 312 edited=false;
313 qDebug("save"); 313// qDebug("save");
314 if (doPopulate) 314 if (doPopulate)
315 populateBox(); 315 populateBox();
316 } 316 }
317 cfg.writeEntry( "LastDoc",oldDocName ); 317 cfg.writeEntry( "LastDoc",oldDocName );
318 cfg.write(); 318 cfg.write();
319 319
320 } 320 }
321} 321}
322 322
323void NotesControl::populateBox() { 323void NotesControl::populateBox() {
324 box->clear(); 324 box->clear();
325 qDebug("populate"); 325// qDebug("populate");
326 Config cfg("Notes"); 326 Config cfg("Notes");
327 cfg.setGroup("Docs"); 327 cfg.setGroup("Docs");
328 int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 ); 328 int noOfFiles = cfg.readNumEntry("NumberOfFiles", 0 );
329 QStringList list; 329 QStringList list;
330 QString entryName; 330 QString entryName;
331 for ( int i = 0; i < noOfFiles; i++ ) { 331 for ( int i = 0; i < noOfFiles; i++ ) {