|
From: Emilien K. <cur...@us...> - 2005-09-29 17:05:14
|
Update of /cvsroot/wxdevcenter/wxDevCenter/src/unix In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22512/src/unix Modified Files: Tag: modularisation Config-unix.cpp FileSystemStandard-unix.cpp Log Message: Change module to plugin. Index: FileSystemStandard-unix.cpp =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/src/unix/Attic/FileSystemStandard-unix.cpp,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** FileSystemStandard-unix.cpp 24 Sep 2005 12:45:44 -0000 1.1.2.1 --- FileSystemStandard-unix.cpp 29 Sep 2005 17:05:01 -0000 1.1.2.2 *************** *** 22,26 **** // 02111-1307, USA. ! #include <wxDevCenterModule.h> #include <wxDevCenter/FileSystemStandard.h> #include <wxDevCenter/unix/FileSystemStandard.h> --- 22,26 ---- // 02111-1307, USA. ! #include <wxDevCenterPlugin.h> #include <wxDevCenter/FileSystemStandard.h> #include <wxDevCenter/unix/FileSystemStandard.h> *************** *** 37,41 **** ////////////////////////////////////////////////////////////////////// ! WXDC_IMPLEMENT_MODULE_CLASS(FileSystemStandardUnix, FileSystemStandard, FileSystemStandard) FileSystemStandardUnix::FileSystemStandardUnix(): --- 37,43 ---- ////////////////////////////////////////////////////////////////////// ! FileSystemStandardUnix g_FileSystemStdUnix; ! ! IMPLEMENT_DYNAMIC_CLASS(FileSystemStandardUnix, FileSystemStandard) FileSystemStandardUnix::FileSystemStandardUnix(): Index: Config-unix.cpp =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/src/unix/Attic/Config-unix.cpp,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** Config-unix.cpp 22 Sep 2005 17:06:43 -0000 1.1.2.2 --- Config-unix.cpp 29 Sep 2005 17:05:01 -0000 1.1.2.3 *************** *** 58,62 **** m_strInstallPath = ReadConfig(WXDC_CONF_KEYNAME_INSTALLDIR , wxT(wxDC_INSTALL_TARGET)); - AddModulePath( ReadConfig(WXDC_CONF_KEYNAME_MODULEDIR , wxString(wxDC_INSTALL_TARGET) + wxString(wxT("/lib/")) + WXDC_SETUP_APPIDENT + wxT("/modules"))); AddDataPath( ReadConfig(WXDC_CONF_KEYNAME_DATADIR , wxString(wxDC_INSTALL_TARGET) + wxString(wxT("/share/")) + WXDC_SETUP_APPIDENT + wxT("/data"))); AddFeaturesPath( ReadConfig(WXDC_CONF_KEYNAME_FEATURESDIR , wxString(wxDC_INSTALL_TARGET) + wxString(wxT("/share/")) + WXDC_SETUP_APPIDENT + wxT("/features"))); --- 58,61 ---- |