Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Help / Re: Codeblocks and wxwidgets 3.3 under Windows
« Last post by Miguel Gimenez on Yesterday at 06:21:21 pm »
Fixed in r13642, thank you for reporting and testing.
2
Help / Re: Codeblocks and wxwidgets 3.3 under Windows
« Last post by gd_on on Yesterday at 06:06:01 pm »
With that patch, it's effectively OK now. Thanks
3
Help / Re: Codeblocks and wxwidgets 3.3 under Windows
« Last post by Miguel Gimenez on Yesterday at 05:23:09 pm »
There are only two calls to SetPageToolTip():
  - one is in a loop with well defined range (projectmanagerui.cpp:2199)
  - other uses the result of wxAuiNotebook::GetPageIndex() (editorbase.cpp:169)

Chenging the second part to this
Code
    if (nb)
    {
        const int idx = nb->GetPageIndex(this);
        if (idx != wxNOT_FOUND)
        {
            nb->SetPageToolTip(idx, toolTip);
            Manager::Get()->GetEditorManager()->MarkReadOnly(idx, IsReadOnly() || (fname.FileExists() && !wxFile::Access(fname.GetFullPath(), wxFile::write)) );
        }
    }
should fix the issue.
4
Help / Codeblocks and wxwidgets 3.3 under Windows
« Last post by gd_on on Yesterday at 04:00:30 pm »
As wxWidgets 3.3.0 will be released next month (due date April 15th), I'm trying to compile C::B (last svn 13640) with wxwidgets 3.3.0. Compilation and link under Windows 24H2 with Msys2/mingW64 is OK. When I open C::B, it's OK too. But when I open a project, I obtain several wxCHECK_MSG (one by opened tab containing source code) coming from src/aui/auibook.cpp at line 2592, in SetPageToolTip : apparently something wrong with page_idx (invalid page index). Recently, there has been many changes in auibook.cpp. May be it needs some adjustments in C::B for wxWidgets 3.3 (no such problems with wxWidgets 3.2.6) !
5
General (but related to Code::Blocks) / Re: Code::Blocks and FreeBASIC?
« Last post by chameleon on March 24, 2025, 05:52:30 pm »
I also use C++ for 2 decades, but it would be nice to see something like that.
I think it is not very difficult because debugger is gdb and only the compiler is fbc32 or fbc64 (based on gcc).
Of course code completion is not necessery.
Syntax highlighting is not mandatory.
6
Nightly builds / Re: The 15 March 2025 build (13634) is out.
« Last post by dkulp on March 24, 2025, 04:38:39 pm »
Mac version still will not start.   Crashes.

7
Hello, Mikhail!
The mistake was that I accidentally checked the wrong box in the Debug settings. I visited your website, as I understand it, you are actively using Code Blocks. I would like to be able to visit your website and communicate directly (if possible).Hello, Mikhail!
The mistake was that I accidentally checked the wrong box in the Debug settings. I visited your website, as I understand it, you are actively using Code Blocks. I would like to be able to visit your website and communicate directly (if possible).
8
Just curious where did you get these compiler flags? If you ran some Makefile then that Makefile is written incorrectly and needs fixing.
9
Thank you very much! Sorry for the carelessness.
10
Nightly builds / Re: The 15 March 2025 build (13634) is out.
« Last post by ThierryD on March 24, 2025, 12:44:31 pm »
Hello,

I try today to reinstall nigthly on my Linux Mint 22.1 configuration, first remove and reinstall CB, and after Xaviou's PPA. Nothing do, only previous nightly  (SVN 13620) can be installed.

Log of this try in file joined. I don't bknow why ...

Regards.

Pages: [1] 2 3 4 5 6 ... 10