another problem when creating a DLL...
let's say I'm compiling a DLL called "Irrlicht.dll", now the lib file is named "libIrrlicht.dll.a"...
but I don't want the ".dll" between "libIrrlicht" and ".a" !!!
now I either need to rename the lib manually or change the project settings for all my projects...
is there a way to disable the ".dll" for the lib name ???
http://forums.codeblocks.org/index.php/topic,10912.msg75078.html#msg75078 (http://forums.codeblocks.org/index.php/topic,10912.msg75078.html#msg75078)
wx-2.9 migration... yet the wx dll you provided is still the 2.8 version (wxmsw28u_gcc_cb.dll).
There's something I don't understand. You write :Quotewx-2.9 migration... yet the wx dll you provided is still the 2.8 version (wxmsw28u_gcc_cb.dll).
another problem when creating a DLL...yup, and also still the Ctrl-Tab / Ctrl-Shift-Tab problem presists !!! :?
let's say I'm compiling a DLL called "Irrlicht.dll", now the lib file is named "libIrrlicht.dll.a"...
but I don't want the ".dll" between "libIrrlicht" and ".a" !!!
now I either need to rename the lib manually or change the project settings for all my projects...
is there a way to disable the ".dll" for the lib name ???
http://forums.codeblocks.org/index.php/topic,10912.msg75078.html#msg75078 (http://forums.codeblocks.org/index.php/topic,10912.msg75078.html#msg75078)
yup, and also still the Ctrl-Tab / Ctrl-Shift-Tab problem presists !!! :?
I'll stick with rev5678 - the last rev where both worked right... ;)
A single Ctrl-Tab doesn't switch tabs it only shows the tab dialog. Once the dialog is displayed subsequent commands switches documents forward or backward.
You can change the keyboard-shortcut for the switcherdialog with the keybinder-plugin, and/or use "Ctrl+left/right arrow" instead.
I can create and a patch if anyone is interested in testing and/or improving it.I uploaded the patch to my server: http://apt.jenslody.de/patches/cbAuiBook_20090728-1.patch (http://apt.jenslody.de/patches/cbAuiBook_20090728-1.patch).
But be aware that it might never make it into trunk, even if I think we should do so.
Xaviou, wouldn't be nice if your version or any other GNU/Linux Distro edition could be displayed to killerbot's Build announcement listed in Linux section?absolutely yes.
It would be really appreciated by people like me, because I mainly use Fedora and nowadays I [kind of] support SliTaz and I am willing to add to their tazpkg list Code::Blocks' nightly builds.
Don't you think that GNU/Linux deserves to be on the same announcement window rather than below to it? After all, we do the same things like dominating operating system named Windows!
if (1) 2;
if(1) 2;
Index: src/plugins/codecompletion/parser/token.cpp
===================================================================
--- src/plugins/codecompletion/parser/token.cpp (revision 5810)
+++ src/plugins/codecompletion/parser/token.cpp (working copy)
@@ -9,6 +9,8 @@
#include <sdk.h>
#include <globals.h>
+#include <logmanager.h>
+#include <manager.h>
#include "token.h"
#include <wx/intl.h>
#include <wx/tokenzr.h>
Index: src/plugins/contrib/ThreadSearch/SearchInPanel.cpp
===================================================================
--- src/plugins/contrib/ThreadSearch/SearchInPanel.cpp (revision 5810)
+++ src/plugins/contrib/ThreadSearch/SearchInPanel.cpp (working copy)
@@ -17,8 +17,12 @@
#include "sdk.h"
#ifndef CB_PRECOMP
- #include <wx/checkbox.h>
- #include <wx/sizer.h>
+ #include <wx/bmpbuttn.h>
+ #include <wx/checkbox.h>
+ #include <wx/imaglist.h>
+ #include <wx/sizer.h>
+
+ #include <configmanager.h>
#endif
#include "SearchInPanel.h"
Index: main.cpp
===================================================================
--- main.cpp (révision 5811)
+++ main.cpp (copie de travail)
@@ -1932,7 +1932,9 @@
wxString buf = event.GetString();
wxString links;
- links << _("<table>\n<tr><td colspan=\"2\"><b>Recent projects</b></td></tr>\n");
+ links << _T("<table>\n<tr><td colspan=\"2\"><b>") ;
+ links << _("Recent projects") ;
+ links << _T("</b></td></tr>\n");
if (m_pProjectsHistory->GetCount())
{
for (int i = 0; i < 9; ++i)
@@ -1948,10 +1950,14 @@
links << _T("</td></tr>\n");
}
}
- else
- links << _T("<tr><td style=\"width:2em;\"></td><td> No recent projects</td></tr>\n");
-
- links << _("</table>\n<table>\n<tr><td colspan=\"2\"><b>Recent files</b></td></tr>\n");
+ else {
+ links << _T("<tr><td style=\"width:2em;\"></td><td> ") ;
+ links << _("No recent projects") ;
+ links << _T("</td></tr>\n");
+ }
+ links << _T("</table>\n<table>\n<tr><td colspan=\"2\"><b>") ;
+ links << _("Recent files") ;
+ links << _T("</b></td></tr>\n");
if (m_pFilesHistory->GetCount())
{
for (int i = 0; i < 9; ++i)
@@ -1967,12 +1973,14 @@
links << _T("</td></tr>\n");
}
}
- else
- links << _T("<tr><td style=\"width:2em;\"></td><td> No recent files</td></tr>\n");
+ else {
+ links << _T("<tr><td style=\"width:2em;\"></td><td> ") ;
+ links << _("No recent files") ;
+ links << _T("</td></tr>\n");
+ }
+ links << _T("</table>\n");
- links << _("</table>\n");
-
// update page
buf.Replace(_T("CB_VAR_RECENT_FILES_AND_PROJECTS"), links);
buf.Replace(_T("CB_TXT_NEW_PROJECT"), _("Create a new project"));
This apply to svn 5811.
The new Start Here page with trash can icons is nice. But for translating some items (in French for me), I think that some strings contains non useful things, for example formatting strings, and two strings are missing.
I propose the following patch :
Thanks jens.I applied it manually (you forgot the braces for the else-clause if I remember right).
I hope you caught the very last version of the patch, because I made a small error the first time I sent it (some {} missing!).
gd_on
Killer Bot:
May I have a question!
I like C:B very much, she 's very nice and cool! now I'm meetting a problem: C:B don't surpport
chinese language. I'm chinese. make software,I always use chinese,Can you help me?
Can you tell me how to solve it? do it detail , thanks! I'm newer.
follow you
80sky