News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Open Patches on Berlios that needs closed without them being applied.

Started by stahta01, February 18, 2007, 11:39:56 PM

Previous topic - Next topic

stahta01

FYI:

I had some patches I submitted on Berlios that needed closed. Thanks for closing them.

    [ Patch #1884 ] Updated ANSI build patch file ANSI_BUILD_cb-projectfiles.pat
        https://developer.berlios.de/patch/?func=detailpatch&patch_id=1884&group_id=5358
             Reason: posted better solution in thread listed in patch.

    [ Patch #1783 ] GetConfigFolder patch to make it work in a Portable win32
        https://developer.berlios.de/patch/?func=detailpatch&patch_id=1783&group_id=5358
             Reason: Patch does NOT meet Code::Blocks Team requirement to NOT change API on class method.

    [ Patch #1696 ] patch to the old wxSmith to use wxPropertyGrid version 1.2.x
        https://developer.berlios.de/patch/?func=detailpatch&patch_id=1696&group_id=5358
             Reason: wxSmith was updated to new code base so patch does not apply.

    [ Patch #1733 ] wxmsw28 patch for wxWidgets 2.8
        https://developer.berlios.de/patch/?func=detailpatch&patch_id=1733&group_id=5358
             Reason: posted better solution in thread listed in patch.


Tim S
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

Ceniza


stahta01

Note, I have three patches that need closed because I have submitted an updated single patch file.

Thanks, for closing them.

Tim S


[ Patch #1771 ] Old wxSmith patch for wxListbook::HitTest protected wxW2.8
https://developer.berlios.de/patch/?func=detailpatch&patch_id=1771&group_id=5358

[ Patch #1766 ] NEW (experimental) wxSmith patch for wxWidgets 2.8
https://developer.berlios.de/patch/?func=detailpatch&patch_id=1766&group_id=5358

[ Patch #1702 ] patch to the old wxSmith to use wxPropertyGrid version 1.2.x
https://developer.berlios.de/patch/?func=detailpatch&patch_id=1702&group_id=5358


C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

Der Meister

Here is another one:

[ Patch #1562 ] Enable gpm for wxGTK
https://developer.berlios.de/patch/?func=detailpatch&patch_id=1562&group_id=5358

It had a bad side effect that noticed some time after I submitted this patch.
Real Programmers don't comment their code. If it was hard to write, it should be hard to understand.
Real Programmers don't write in BASIC. Actually, no programmers write in BASIC, after the age of 12.

killerbot


stahta01

Please close my [ Patch #1788 ] SDK patch to reduce warning for wxWidgets 2.8
http://developer.berlios.de/patch/?func=detailpatch&patch_id=1788&group_id=5358

reason: is because another patch solves the same problem. Uses a different solution that should match C::B needs better. I have not looked at the patch, but sounds better than mine.
Tim S

The better patch is 1982  "Eliminate signed/unsigned compiler warnings"
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

Biplab

Quote from: stahta01 on May 20, 2007, 07:07:51 PM
Please close my [ Patch #1788 ] SDK patch to reduce warning for wxWidgets 2.8

Closed. :)

Quote from: stahta01 on May 20, 2007, 07:07:51 PM
reason: is because another patch solves the same problem. Uses a different solution that should match C::B needs better. I have not looked at the patch, but sounds better than mine.

I hope you're referring to the following code submitted by pauliusz. Original patch will surely generate warning in wx 2.6.
QuoteGood example:
- for (selection = m_Selection+1; selection<clbTargets->GetCount(); ++selection)
+ for (selection = m_Selection + 1; selection < static_cast<int>(clbTargets->GetCount()); ++selection)

Regards,

Biplab
Be a part of the solution, not a part of the problem.

pauliusz

Please close [ Feature Request #3301 ] The Tools Menu -- Separators
http://developer.berlios.de/feature/?func=detailfeature&feature_id=3301&group_id=5358

Patch for this feature was applied some time ago...

Ceniza


pauliusz

Please close [ Patch #2016 ] Add support for WinAVR compiler (Feature Request #3413)
http://developer.berlios.de/patch/?func=detailpatch&patch_id=2016&group_id=5358
and [ Feature Request #3413 ] Complete AVR-GCC integration
http://developer.berlios.de/feature/?func=detailfeature&feature_id=3413&group_id=5358

Everything is already in SVN

Ceniza


dmoore

it looks like patch 2026 is redundant - someone has already implemented the double click feature.
Python plugins: [url="https://github.com/spillz/codeblocks-python"]https://github.com/spillz/codeblocks-python[/url]
Code::Blocks Daily Builds -- Ubuntu PPA: [url="https://launchpad.net/~damien-moore/+archive/codeblocks"]https://launchpad.net/~damien-moore/+archive/codeblocks[/url]

Ceniza


stahta01

Please close patch #1908 "Patch SDK files for wxW28 with disable_compat26"
https://developer.berlios.de/patch/index.php?func=detailpatch&patch_id=1908&group_id=5358


It has mainly been fixed by other patches to eliminate warning in Code::Blocks.

Thanks
Tim S
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

Biplab

Be a part of the solution, not a part of the problem.