Index: conduits/knotes/knotes-conduit.cc =================================================================== RCS file: /home/kde/kdepim/kpilot/conduits/knotes/knotes-conduit.cc,v retrieving revision 1.17 diff -u -3 -p -r1.17 knotes-conduit.cc --- conduits/knotes/knotes-conduit.cc 2001/05/25 16:06:52 1.17 +++ conduits/knotes/knotes-conduit.cc 2001/08/01 23:22:58 @@ -151,7 +151,10 @@ NotesSettings::NotesSettings(const QStri c.setGroup("Data"); nN = c.readEntry("name"); - QString notedata = notesdir + "/." + nN + "_data"; + QString notedata(notesdir); + notedata.append("/."); + notedata.append(nN); + notedata.append("_data"); if (QFile::exists(notedata)) { DEBUGCONDUIT << fname @@ -164,6 +167,8 @@ NotesSettings::NotesSettings(const QStri { kdWarning() << __FUNCTION__ << ": No data file for note?" + << " (tried " + << notedata << ")" << endl; } }