mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
- Changes: http://www.codeblocks.org/downloads/binaries/changelog - submitter re-takes maintainer PR: 209377 Submitted by: lbartoletti@tuxfamily.org
11 lines
608 B
C++
11 lines
608 B
C++
--- src/sdk/wxscintilla/src/ScintillaWX.cpp.orig 2016-01-23 16:43:01 UTC
|
|
+++ src/sdk/wxscintilla/src/ScintillaWX.cpp
|
|
@@ -290,7 +290,7 @@ static int wxCountLines(const char* text
|
|
|
|
/* C::B begin */
|
|
// Constant ids for the timers used by every editor.
|
|
-const int timerIDs[ScintillaWX::timersCount] = { wxNewId(), wxNewId(), wxNewId(), wxNewId() };
|
|
+const int timerIDs[ScintillaWX::timersCount] = { static_cast<int>(wxNewId()), static_cast<int>(wxNewId()), static_cast<int>(wxNewId()), static_cast<int>(wxNewId()) };
|
|
/* C::B end */
|
|
|
|
//----------------------------------------------------------------------
|