Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Help / Re: The tabs close when you save a file.
« Last post by dthu on Today at 01:48:17 am »
Thanks, no problem anymore.
2
Nightly builds / Re: The 20 July 2026 build (13916) is out.
« Last post by Miguel Gimenez on Yesterday at 07:11:26 pm »
Prostitution advertisement reported to moderator.
4
Contributions to C::B / Re: Patch for debugger_gdbmi_windows.cbp
« Last post by Pecan on Yesterday at 06:23:21 pm »
Applied svn 13950
Thanks
5
Contributions to C::B / Patch for debugger_gdbmi_windows.cbp
« Last post by gd_on on Yesterday at 12:00:25 pm »
Here is a patch for debugger_gdbmi_Windows.cbp
There was an error in the building of the zip file: 3 files were missing. So the GDB/MI panel did not display the configuration.
6
Nightly builds / Re: The 20 July 2026 build (13916) is out.
« Last post by yuvi01 on Yesterday at 11:29:22 am »
Discover a world of luxury and pleasure by opting for a professional Hot Gurgaon Call Girls Service that prides itself on offering polite, stunning, and well-mannered companions dedicated to making your experience thoroughly enjoyable and completely stress-free.
7
Help / Re: The tabs close when you save a file.
« Last post by killerbot on August 12, 2026, 11:05:56 pm »
I originally wrote the glob feature, and then somebody worked on it, to provide a UI, and some other features.
Since that day, it has been driving me crazy, what I suffered from was, when I edited such opened file, and saved it, it always jumped to the start of the file, and the close thing I might have suffered from that too.

So nice to see, there is a fix. I will try to check if in my projects this is solved too.

I started ditching the glob feature use due to that regression, since I don't have time myself to go study what happened to the original feature.
8
Help / Re: The tabs close when you save a file.
« Last post by christo on August 12, 2026, 08:21:36 pm »
Issue is due to an extra file separator added in calculating relative path. This causes false failure  on checking if file is in glob list. And it results in editor being closed.

Fix added in svn r13949
9
General (but related to Code::Blocks) / CodeBlocks 20.03 pre 2023 builds
« Last post by codingisfun on August 12, 2026, 11:00:46 am »
Hi
I've recently tried to reinstall codeblocks 20.03 on my retro windows xp machine and I realized it won't work anymore, 2 years ago I downloaded the exact same version and it worked perfectly fine on the exact same machine, it turns out somebody has updated the files and the new files give you a broken build. to confirm it I dug up this old portable 20.03 build dated 2021 from archive.org and I can confirm it used to work, if you've got older installers please give me a link I want to burn them into a DVD so my time won't be wasted again.
10
Help / Re: The tabs close when you save a file.
« Last post by blauzahn on August 12, 2026, 06:43:09 am »
A quick glance into projectloader.cpp function UpdateGlob shows a range for-loop with a temporary a few lines above line 1143:

Code
// First search for valid project files (glob id) and also for project files we have to remove
for (ProjectFile* file : m_pProject->GetFilesList())

This has been fixed in C++23 (see: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2644r1.pdf).

In the meantime I recommend to put the file list into a local variable like that:

Code
// First search for valid project files (glob id) and also for project files we have to remove
const auto& files = m_pProject->GetFilesList();
for (ProjectFile* file : files)

It may not be the reason for this issue but should be fixed anyway.
Pages: [1] 2 3 4 5 6 ... 10