[Igarden-commit] CommonSource/YAAFExtensions RGPaletteView.cpp, 1.5, 1.6 RGPanel.h, 1.3, 1.4 RGPane
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:52:53
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv9693 Modified Files: RGPaletteView.cpp RGPanel.h RGPanelSet.h Log Message: Win32 changes Index: RGPanelSet.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGPanelSet.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RGPanelSet.h 9 Oct 2006 12:19:11 -0000 1.5 --- RGPanelSet.h 22 Feb 2007 04:52:51 -0000 1.6 *************** *** 34,38 **** using namespace yaaf; ! class PanelSet : public XGView { public: --- 34,38 ---- using namespace yaaf; ! class YAAF_API PanelSet : public XGView { public: *************** *** 45,49 **** public: enum { ! kClassID = 'pnls' }; --- 45,49 ---- public: enum { ! kClassID = CHAR4('p','n','l','s') //'pnls' }; Index: RGPaletteView.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGPaletteView.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RGPaletteView.cpp 2 Oct 2006 02:27:11 -0000 1.5 --- RGPaletteView.cpp 22 Feb 2007 04:52:51 -0000 1.6 *************** *** 85,89 **** static XGSViewInitRecord ToolInitRecord = { ! '****', 1, 0, 0, 0, 0, 0, true, true, true, true, --- 85,89 ---- static XGSViewInitRecord ToolInitRecord = { ! CHAR4('*','*','*','*'), 1, 0, 0, 0, 0, 0, true, true, true, true, Index: RGPanel.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGPanel.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RGPanel.h 2 Feb 2006 00:08:27 -0000 1.3 --- RGPanel.h 22 Feb 2007 04:52:51 -0000 1.4 *************** *** 56,60 **** */ ! class RGPanel : public XGView { public: RGPanel(XGView *parent, XGArgStream &init); --- 56,60 ---- */ ! class YAAF_API RGPanel : public XGView { public: RGPanel(XGView *parent, XGArgStream &init); *************** *** 63,67 **** enum { ! kClassID = 'panl' }; --- 63,67 ---- enum { ! kClassID = CHAR4('p','a','n','l') //'panl' }; |