Recent Posts

Pages: 1 ... 5 6 7 8 9 [10]
91
Code::Blocks is an IDE, any concerns related to compilers should be dealt with in their respective support pages.

Correct, but in this case it is an issue with the IDE not configuring the compiler settings correctly.
92
Development / Re: Assertion in JumpTracker
« Last post by Pecan on October 22, 2025, 08:09:51 pm »
Fixes applied svn 13753
Thanks
93
Development / Re: Assertion in JumpTracker
« Last post by LETARTARE on October 22, 2025, 05:31:36 pm »
Leap-15.6-64bits, gcc-1520, wx-328, gtk3-unicode-3.2
Cb13752
Identical problem :
I did this :
Code
void SetJumpTrackerViewIndex(int itemIndex)
{
    if (itemIndex < 0)
return;
    int knt = m_pListCtrl->GetItemCount();
    if (knt < 0)
        return;
    if (itemIndex >= knt)
return; //setting index before adding the item

    m_pListCtrl->SetItemState(itemIndex, wxLIST_STATE_SELECTED                                                   , wxLIST_STATE_SELECTED);
}

I'm testing a day ...
94
Code::Blocks is an IDE, any concerns related to compilers should be dealt with in their respective support pages.
95
Hi,
I have a strange, at least for me, behavior with windows 11 25H2 64 bit, codeblock 25.03 with gcc 14.2.0 64 bit compiler and pointer.
The code is very simple:

Code
#include <iostream>

using namespace std;

int main()
{
    cout << sizeof(int *) << endl;

    return 0;
}

The output is 4 byte on i5-10400 CPU that is wrong whereas is 8 byte on i5-11400 and various ryzen CPUs that is correct.
I tried to copy the same project into the different machines and I had problem only with the first one.
If I manually force -m 64 on the first machine, I get sorry, unimplemented: 64-bit mode not compiled in.. Then I have to manually set on build option minGW64 compiler instead of GCC and it works with -m 64, but it does with default settings.
What could be the reason for this?
Thank you
96
This is caused when the popup window size is wider than the space left to the right edge of the parent window.

For example: When this happens, move the editor window to the left to allow room for the full popup window. Show the data again,
then the popup window will show correctly.

I know this isn't a fix. ..just sayin'...
97
Development / Re: Assertion in JumpTracker
« Last post by Pecan on October 22, 2025, 07:34:37 am »
Hi Miguel Gimenez, I have seen such a crash earlier. https://github.com/josephch/codeblocks/commit/5be7d91c955a481a48abe545a86342e9b30f8ed7 should help with this as list item's index should be always less than item count.

I'll make the change and test awhile.

Thanks
98
Hi, if the horizontal scroll bar exists, the content get covered, see the 2 images in the attachment.
99
Development / Re: Assertion in JumpTracker
« Last post by christo on October 21, 2025, 07:44:53 pm »
Hi Miguel Gimenez, I have seen such a crash earlier. https://github.com/josephch/codeblocks/commit/5be7d91c955a481a48abe545a86342e9b30f8ed7 should help with this as list item's index should be always less than item count.
100
Development / Re: Assertion in JumpTracker
« Last post by Miguel Gimenez on October 21, 2025, 03:24:25 pm »
wxWidgets 3.0.2 32 bits
GTK+ 2.24.30
Pages: 1 ... 5 6 7 8 9 [10]