|
From: Herton R. K. <he...@us...> - 2005-07-01 23:22:01
|
Update of /cvsroot/kimageprocess/kimageprocess/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30433 Modified Files: kimageprocess.cpp pref.cpp Log Message: - Really fixing now the bug of opened projects that do not save. Index: pref.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/pref.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- pref.cpp 1 Jul 2005 22:15:11 -0000 1.9 +++ pref.cpp 1 Jul 2005 23:21:50 -0000 1.10 @@ -55,7 +55,6 @@ void KImageProcessPreferences::slotOk() { - KTProject::self()->setChanged(); save(); close(); } Index: kimageprocess.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/kimageprocess.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- kimageprocess.cpp 29 Jun 2005 03:02:59 -0000 1.25 +++ kimageprocess.cpp 1 Jul 2005 23:21:50 -0000 1.26 @@ -300,7 +300,7 @@ if (!KTProject::self()->isSaved()) fileSaveAs(); else - KTProject::self()->saveProject(); + KTProject::self()->saveProject(KTProject::self()->url()); } void KImageProcess::fileSaveAs() |