[Igarden-commit] CommonSource/YAAFExtensions RGClipboard.h, 1.4, 1.5 RGClipboard.cpp, 1.9, 1.10 RGD
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:35:15
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv2647 Modified Files: RGClipboard.h RGClipboard.cpp RGDateTime.h RGCompression.h Log Message: Win32 changes Index: RGCompression.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGCompression.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RGCompression.h 15 Oct 2006 01:03:28 -0000 1.7 --- RGCompression.h 22 Feb 2007 04:35:14 -0000 1.8 *************** *** 46,50 **** class CGWorld; ! class RGCompression { public: static void CompressFileJPEG( CGWorld *image, --- 46,50 ---- class CGWorld; ! class YAAF_API RGCompression { public: static void CompressFileJPEG( CGWorld *image, Index: RGClipboard.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGClipboard.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RGClipboard.h 18 Oct 2006 01:16:10 -0000 1.4 --- RGClipboard.h 22 Feb 2007 04:35:14 -0000 1.5 *************** *** 51,55 **** kClipText = 0 #else ! #error TO_BE_PORTED #endif }; --- 51,55 ---- kClipText = 0 #else ! kClipText = 0 // TO_BE_PORTED #endif }; *************** *** 67,71 **** */ ! class RGClipboard { public: /* --- 67,71 ---- */ ! class YAAF_API RGClipboard { public: /* Index: RGClipboard.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGClipboard.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** RGClipboard.cpp 18 Oct 2006 01:16:11 -0000 1.9 --- RGClipboard.cpp 22 Feb 2007 04:35:14 -0000 1.10 *************** *** 93,97 **** * Copy text */ ! text.SetSize(0); // zero out old handle /* --- 93,97 ---- * Copy text */ ! // TO_BE_PORTED text.SetSize(0); // zero out old handle /* *************** *** 182,188 **** h = ::GetClipboardData(CF_TEXT); if (!h) { ! text.SetSize(0); } else { ! CvtFromCRLF(text,h); } ::CloseClipboard(); --- 182,188 ---- h = ::GetClipboardData(CF_TEXT); if (!h) { ! // TO_BE_PORTED text.SetSize(0); } else { ! // TO_BE_PORTED CvtFromCRLF(text,h); } ::CloseClipboard(); Index: RGDateTime.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGDateTime.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** RGDateTime.h 7 Oct 2006 23:42:58 -0000 1.9 --- RGDateTime.h 22 Feb 2007 04:35:14 -0000 1.10 *************** *** 44,48 **** } RGDateBinaryFormat_t; ! class RGDateTime : public XGDateTime { public: --- 44,48 ---- } RGDateBinaryFormat_t; ! class YAAF_API RGDateTime : public XGDateTime { public: |