User forums > Nightly builds

The 14 April 2007 build is out.

(1/5) > >>

killerbot:
Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml

A link to the unicode windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z

To fix the menu alignment bug introduced in wx 2.6.3 [windows only bug] we have patched wx ourselves, and that results in the following alternative dll : http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2AndCbPatch_version3.7z

For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://prdownload.berlios.de/codeblocks/mingwm10.7z

For support of ansi builds, a link to the ansi windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw26_gcc_cb_wx2.6.3p2.7z

The 14 April 2007 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20070414_rev3855_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20070414_rev3855_Ubuntu6.xx.deb
         http://prdownload.berlios.de/codeblocks/CB_20070414_rev3855_suse100-102.i586.rpm (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20070414_rev3855_fc4+5.i586.rpm (not yet)


Resolved Fixed:


* CodeSnippets 1.1.73 2007/04/13 and 1.1.74 2007/04/14 : - Fixes & Edit additions (cf., version.cpp)
Regressions/Confirmed/Annoying/Common bugs:


* toolbar-images-not-changing-state (is a wx problem/Win XP problem)
* menu items with icon not correctly aligned (since wx263) (is fixed with our special wx263/wx28 dll)

Xaviou:
Can't build on Ubuntu 6.10 Amd64 : Error in src/plugins/contrib/codesnippets/finddialogs.cpp


--- Code: (Build log) ---finddialogs.cpp: In constructor 'myFindReplaceDlg::myFindReplaceDlg(wxWindow*, const wxString&, const wxString&, wxUint32, long int)':
finddialogs.cpp:121: error: ISO C++ says that these are ambiguous, even though the worst conversion for the first is better than the worst conversion for the second:
/usr/include/wx-2.6/wx/gtk/combobox.h:53: note: candidate 1: wxComboBox::wxComboBox(wxWindow*, wxWindowID, const wxString&, const wxPoint&, const wxSize&, int, const wxString*, long int, const wxValidator&, const wxString&)
/usr/include/wx-2.6/wx/gtk/combobox.h:64: note: candidate 2: wxComboBox::wxComboBox(wxWindow*, wxWindowID, const wxString&, const wxPoint&, const wxSize&, const wxArrayString&, long int, const wxValidator&, const wxString&)
make[6]: *** [finddialogs.lo] Erreur 1
--- End code ---

And here is the error :

--- Code: (finddialogs.cpp) ---    m_finddir = new wxComboBox (this, -1, finddir,
                                wxDefaultPosition, wxSize(200, -1),
                                //0, NULL); //AMD64 ambiguity betw int vs wxArray
                                (int)0, NULL);

--- End code ---

Edit : Seems to be working if adding a second cast :

--- Code: (finddialogs.cpp) ---    m_finddir = new wxComboBox (this, -1, finddir,
                                wxDefaultPosition, wxSize(200, -1),
                                //0, NULL); //AMD64 ambiguity betw int vs wxArray
                                (int)0, (const wxString*) NULL);

--- End code ---

Xaviou:

--- Quote from: Me on April 14, 2007, 10:40:55 pm ---Seems to be working if adding a second cast :

--- Code: (finddialogs.cpp) ---    m_finddir = new wxComboBox (this, -1, finddir,
                                wxDefaultPosition, wxSize(200, -1),
                                //0, NULL); //AMD64 ambiguity betw int vs wxArray
                                (int)0, (const wxString*) NULL);

--- End code ---

--- End quote ---
It works  :D

Ubuntu 6.10 Amd64 .deb installer can be found here.

Pecan:

--- Quote from: Xaviou on April 14, 2007, 11:17:07 pm ---
--- Quote from: Me on April 14, 2007, 10:40:55 pm ---Seems to be working if adding a second cast :

--- Code: (finddialogs.cpp) ---    m_finddir = new wxComboBox (this, -1, finddir,
                                wxDefaultPosition, wxSize(200, -1),
                                //0, NULL); //AMD64 ambiguity betw int vs wxArray
                                (int)0, (const wxString*) NULL);

--- End code ---

--- End quote ---
It works  :D

Ubuntu 6.10 Amd64 .deb installer can be found here.


--- End quote ---

Thanks for the reports and fix.
Applied SVN 3858

cstudent:
Updated Ubuntu 7.04 (Feisty) build here.

Navigation

[0] Message Index

[#] Next page

Go to full version