Update of /cvsroot/wxdevcenter/wxDevCenter/src/unix
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21767/src/unix
Modified Files:
Tag: modularisation
FileSystemStandard.cpp
Log Message:
Rename Plugin::Module(RefData) in Plugin::DynLib(RefData).
Make all chages to compile with module support.
Index: FileSystemStandard.cpp
===================================================================
RCS file: /cvsroot/wxdevcenter/wxDevCenter/src/unix/FileSystemStandard.cpp,v
retrieving revision 1.3
retrieving revision 1.3.2.1
diff -C2 -d -r1.3 -r1.3.2.1
*** FileSystemStandard.cpp 17 Aug 2005 16:33:18 -0000 1.3
--- FileSystemStandard.cpp 22 Sep 2005 16:41:35 -0000 1.3.2.1
***************
*** 24,27 ****
--- 24,28 ----
#include <wxDevCenter.h>
#include <wxDevCenter/FileSystemStandard.h>
+ #include <wxDevCenter/unix/FileSystemStandard.h>
#include <wx/utils.h>
***************
*** 35,41 ****
// Implémentation spécifique UNIX
//////////////////////////////////////////////////////////////////////
FileSystemStandardUnix::FileSystemStandardUnix():
! FileSystemStandardBase()
{
}
--- 36,44 ----
// Implémentation spécifique UNIX
//////////////////////////////////////////////////////////////////////
+ IMPLEMENT_DYNAMIC_CLASS(FileSystemStandardUnix, FileSystemStandard)
+ WXDC_DECLARE_MODULE_CLASS(FileSystemStandardUnix, FileSystemStandard)
FileSystemStandardUnix::FileSystemStandardUnix():
! FileSystemStandard()
{
}
|