Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 89533 | Differences between
and this patch

Collapse All | Expand All

(-)codeblocks-1_1.0rc2/src/sdk/cbthreadpool.cpp (-2 / +2 lines)
Lines 250-256 Link Here
250
#if wxCHECK_VERSION(2,6,0)
250
#if wxCHECK_VERSION(2,6,0)
251
    wxMilliSleep(1);
251
    wxMilliSleep(1);
252
#else
252
#else
253
    wxUSleep(1);
253
    wxUsleep(1);
254
#endif
254
#endif
255
255
256
    wxLogNull logNo;
256
    wxLogNull logNo;
Lines 265-271 Link Here
265
#if wxCHECK_VERSION(2,6,0)
265
#if wxCHECK_VERSION(2,6,0)
266
            wxMilliSleep(1);
266
            wxMilliSleep(1);
267
#else
267
#else
268
            wxUSleep(1);
268
            wxUsleep(1);
269
#endif
269
#endif
270
            if(++count > 10)
270
            if(++count > 10)
271
                break;
271
                break;
(-)codeblocks-1_1.0rc2/src/sdk/manager.cpp (-1 lines)
Lines 45-51 Link Here
45
#include "xtra_classes.h" // Our custom set of wxWidgets classes
45
#include "xtra_classes.h" // Our custom set of wxWidgets classes
46
#include "xtra_res.h" // our new ToolBarAddOn handler
46
#include "xtra_res.h" // our new ToolBarAddOn handler
47
47
48
49
static bool appShutingDown = false;
48
static bool appShutingDown = false;
50
49
51
/// Reads a wxString from a non-unicode file. File must be open. File is closed automatically.
50
/// Reads a wxString from a non-unicode file. File must be open. File is closed automatically.
(-)codeblocks-1_1.0rc2/src/sdk/messagemanager.cpp (+1 lines)
Lines 38-43 Link Here
38
#include "configmanager.h"
38
#include "configmanager.h"
39
#include "simpletextlog.h"
39
#include "simpletextlog.h"
40
#include "managerproxy.h"
40
#include "managerproxy.h"
41
#include "configmanager.h"
41
42
42
#define CBYIELD() \
43
#define CBYIELD() \
43
  {                                                         \
44
  {                                                         \

Return to bug 89533