User forums > Nightly builds
The 16 January 2010 build (6088) is out.
MortenMacFly:
--- Quote from: fprijatelj on January 24, 2010, 10:27:56 am ---1. Build, or Rebuild, looses my ENVIRONMENT settings.
--- End quote ---
Enable the debugging in the envvars plugin and inspect the debug log what actually happens. I cannot reproduce.
--- Quote from: fprijatelj on January 24, 2010, 10:27:56 am ---2. QT4 Project has only mingw option.
From 4.6 Nokia distributes both mingw and MSVC versions of lib.
--- End quote ---
You can enhance the wizard in any way you like. Just right-clock on it and select "edit". Feel free to add msvc support and provide a patch / updated wizard.
Loaden:
Hi, Morten, can you apply of the temporary font patch?
--- Code: ---Index: app.cpp
===================================================================
--- app.cpp (revision 6112)
+++ app.cpp (working copy)
@@ -675,6 +675,17 @@
}
Manager::ProcessPendingEvents();
+#ifdef __WXMSW__
+ wxString fontPath = GetAppPath() + _T("/share/CodeBlocks/fonts/*.*");
+ wxString font = wxFindFirstFile(fontPath);
+ while (!font.IsEmpty())
+ {
+ ::AddFontResource(font);
+ font = wxFindNextFile();
+ }
+ ::SendMessage(HWND_BROADCAST, WM_FONTCHANGE, 0, 0);
+#endif
+
// finally, show the app
splash.Hide();
SetTopWindow(frame);
@@ -733,6 +744,17 @@
// ultimate shutdown...
Manager::Free();
+#ifdef __WXMSW__
+ wxString fontPath = GetAppPath() + _T("/share/CodeBlocks/fonts/*.*");
+ wxString font = wxFindFirstFile(fontPath);
+ while (!font.IsEmpty())
+ {
+ ::RemoveFontResource(font);
+ font = wxFindNextFile();
+ }
+ ::SendMessage(HWND_BROADCAST, WM_FONTCHANGE, 0, 0);
+#endif
+
// WX docs say that this function's return value is ignored,
// but we return our value anyway. It might not be ignored at some point...
return m_Batch ? m_BatchExitCode : 0;
--- End code ---
[attachment deleted by admin]
MortenMacFly:
--- Quote from: Loaden on January 24, 2010, 04:33:52 pm ---Hi, Morten, can you apply of the temporary font patch?
--- End quote ---
If it's temporary, why should I apply it? :shock:
Loaden:
About AStyle plugin, Here is a new problem:http://forums.codeblocks.org/index.php/topic,11847.0.html
Loaden:
--- Quote from: MortenMacFly on January 24, 2010, 04:41:02 pm ---
--- Quote from: Loaden on January 24, 2010, 04:33:52 pm ---Hi, Morten, can you apply of the temporary font patch?
--- End quote ---
If it's temporary, why should I apply it? :shock:
--- End quote ---
Because CB can be portable, but if the target machine does not have CB set the font how to do?
For example, Dejuva the fonts in the Windows platform is not installed.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version