[Igarden-commit] Garden/source/Plugins PictureInfo.h, 1.3, 1.3.2.1 PictureInfo.cpp, 1.6.2.2, 1.6.2.
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2008-04-11 10:38:40
|
Update of /cvsroot/igarden/Garden/source/Plugins In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv30184/source/Plugins Modified Files: Tag: Release_branch_v1 PictureInfo.h PictureInfo.cpp Log Message: If column set is read-only, then open a read-only version of the picture selection dialog Rcalculate scroll parameters when column set changes Index: PictureInfo.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Plugins/PictureInfo.cpp,v retrieving revision 1.6.2.2 retrieving revision 1.6.2.3 diff -C2 -d -r1.6.2.2 -r1.6.2.3 *** PictureInfo.cpp 12 Feb 2007 13:13:27 -0000 1.6.2.2 --- PictureInfo.cpp 11 Apr 2008 10:38:43 -0000 1.6.2.3 *************** *** 26,29 **** --- 26,46 ---- // --------------------------------------------------------------------------- + /// Clear + // + void PictureInfo::Clear() + { + String empty; + XGUUID nilUID; + + _url = empty; + _srcPath = empty; + _fullCanonical = empty; + _commonName = empty; + _copyright = empty; + _createdBy = empty; + _supplierID = nilUID; + } + + // --------------------------------------------------------------------------- /// SetExternalURL // Index: PictureInfo.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/Plugins/PictureInfo.h,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** PictureInfo.h 18 May 2006 11:16:43 -0000 1.3 --- PictureInfo.h 11 Apr 2008 10:38:43 -0000 1.3.2.1 *************** *** 27,30 **** --- 27,31 ---- { public: + void Clear(); void SetExternalURL(String &url); void SetLocalPath(String &url); |