Developer forums (C::B DEVELOPMENT STRICTLY!) > Development
Unicode conversion (attention all devs)
rickg22:
Ah well. Nevermind, keep hunting those uninitialized variables!
(Should we recompile with -Wall and -pedantic or someting?)
byo:
--- Quote from: rickg22 on August 09, 2005, 12:55:22 am ---Ah well. Nevermind, keep hunting those uninitialized variables!
(Should we recompile with -Wall and -pedantic or someting?)
--- End quote ---
-Wall is already included :)
And I forgot to include plugins in my patch :oops:
Full log:
--- Code: ---? patch
? src/.deps
? src/.objs
Index: src/plugins/compilergcc/makefilegenerator.h
===================================================================
RCS file: /cvsroot/codeblocks/codeblocks/src/plugins/compilergcc/makefilegenerator.h,v
retrieving revision 1.12.2.3
diff -r1.12.2.3 makefilegenerator.h
39,41c39,41
< void DoAppendIncludeDirs(wxString& cmd, ProjectBuildTarget* target = 0L, const wxString& prefix = "-I", bool useGlobalOptions = false);
< void DoAppendResourceIncludeDirs(wxString& cmd, ProjectBuildTarget* target = 0L, const wxString& prefix = "-I", bool useGlobalOptions = false);
< void DoAppendLibDirs(wxString& cmd, ProjectBuildTarget* target = 0L, const wxString& prefix = "-L", bool useGlobalOptions = false);
---
> void DoAppendIncludeDirs(wxString& cmd, ProjectBuildTarget* target = 0L, const wxString& prefix = _T("-I"), bool useGlobalOptions = false);
> void DoAppendResourceIncludeDirs(wxString& cmd, ProjectBuildTarget* target = 0L, const wxString& prefix = _T("-I"), bool useGlobalOptions = false);
> void DoAppendLibDirs(wxString& cmd, ProjectBuildTarget* target = 0L, const wxString& prefix = _T("-L"), bool useGlobalOptions = false);
Index: src/plugins/pluginwizard/pluginwizarddlg.h
===================================================================
RCS file: /cvsroot/codeblocks/codeblocks/src/plugins/pluginwizard/pluginwizarddlg.h,v
retrieving revision 1.3
diff -r1.3 pluginwizarddlg.h
22c22
< void DoAddHeaderOption(wxString& buffer, bool has, const wxString& retVal = " -1");
---
> void DoAddHeaderOption(wxString& buffer, bool has, const wxString& retVal = _T(" -1"));
Index: src/sdk/projectloader.h
===================================================================
RCS file: /cvsroot/codeblocks/codeblocks/src/sdk/projectloader.h,v
retrieving revision 1.5.2.2
diff -r1.5.2.2 projectloader.h
41c41
< bool DoOptionSection(wxString& buffer, const wxArrayString& array, int nrOfTabs, const wxString& optionName = "option");
---
> bool DoOptionSection(wxString& buffer, const wxArrayString& array, int nrOfTabs, const wxString& optionName = _T("option"));
45c45
< void SaveOptions(wxString& buffer, const wxArrayString& array, const wxString& sectionName, int nrOfTabs, const wxString& optionName = "option", const wxString& extra = "");
---
> void SaveOptions(wxString& buffer, const wxArrayString& array, const wxString& sectionName, int nrOfTabs, const wxString& optionName = _T("option"), const wxString& extra = _T(""));
--- End code ---
Hmm, quite strange is fact that without these changes all will be compilable under Win but won't under Linux... Hmm, I don't understand this ;) (But I think I don't have to ;) )
tiwag:
--- Quote from: byo on August 09, 2005, 12:40:21 am ---As a newbie in cvs :oops: I must ask:
cvs diff
does this produce usable patches ?
--- End quote ---
use
--- Code: ---cvs diff -u
--- End code ---
for your patches in unified format
byo:
--- Quote from: tiwag on August 09, 2005, 01:14:27 am ---use
--- Code: ---cvs diff -u
--- End code ---
for your patches in unified format
--- End quote ---
Thx for info :D
cyberkoa:
I have just landed , let me have some time to compile unicode-version of wxwidgets and redownload CVS.
I will come back soon to help
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version