From: stephan b. <sg...@us...> - 2004-12-28 23:02:22
|
Update of /cvsroot/pclasses/pclasses2/src/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27375/src/Util Modified Files: Prefs.cpp Log Message: Now compiles under P2, but has a dep on IO, which means IO almost certainly has a circular dep on the Util module. Index: Prefs.cpp =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/Util/Prefs.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Prefs.cpp 28 Dec 2004 22:55:51 -0000 1.2 +++ Prefs.cpp 28 Dec 2004 23:02:13 -0000 1.3 @@ -1,5 +1,4 @@ #include "pclasses/Util/Prefs.h" - #include <sstream> #include <iostream> @@ -110,14 +109,14 @@ } -void Prefs::load() throw(P::IOError) { +void Prefs::load() throw(P::IO::IOError) { if(!_store) return; clear(); _store->load(_root); } -void Prefs::save() throw(P::IOError) { +void Prefs::save() throw(P::IO::IOError) { if(!_store) return; _store->update(_root); } |