Search found 6 matches
- Thu Aug 23, 2007 03:53
- Forum: Help
- Topic: Compiling from source and Lua module
- Replies: 9
- Views: 6216
I just had this problem. I checked config.log and it turns out I had lua 5.1.1 and CEGUI wanted max 5.1. I went into the configure script and changed all the lua 5.1 strings to lua 5.1.2 and it compiled. I haven't tested it at all yet, but since CEGUI hasn't been updated (at least in a stable releas...
- Wed Nov 29, 2006 21:21
- Forum: Help
- Topic: event return values question
- Replies: 1
- Views: 1955
event return values question
When handling events inside the actual code, what are the return values for?
true if event was handled, false if not? What happens if the event wasn't handled, where will it go next?
(Honestly as far as I can tell true or false has no effect)
true if event was handled, false if not? What happens if the event wasn't handled, where will it go next?
(Honestly as far as I can tell true or false has no effect)
- Tue Nov 28, 2006 08:46
- Forum: Offtopic Discussion
- Topic: possible bug?
- Replies: 4
- Views: 4898
- Tue Nov 28, 2006 06:45
- Forum: Offtopic Discussion
- Topic: possible bug?
- Replies: 4
- Views: 4898
I double checked the debug and release links, they are fine. I downloaded the pre-compiled dll version, and my release runtime is set to Multi-threaded and my debug is multi-threaded debug. I just tried a release Multithreaded DLL runtime compile and got the exact same results. EDIT: I'm using VS.NE...
- Tue Nov 28, 2006 06:24
- Forum: Offtopic Discussion
- Topic: possible bug?
- Replies: 4
- Views: 4898
possible bug?
I'm getting some extremely odd crashes with my CEGUI code. Read the comments in what I post below ----------------------------- bool DirectConnect(const CEGUI::EventArgs& args) { using namespace CEGUI; WindowManager& winMgr = WindowManager::getSingleton(); CEGUI::String playStr, ipStr; Editb...
- Sat Nov 25, 2006 17:17
- Forum: Offtopic Discussion
- Topic: EditBox crashing
- Replies: 1
- Views: 2839
EditBox crashing
I'm having strange problems getting text from an edit box. Here is the code. ------------------------- using namespace CEGUI; CEGUI::MultiLineEditbox *commandlog = (CEGUI::MultiLineEditbox*)GUI->getRoot()->getChild("ChatLog"); CEGUI::Editbox *commandline = (CEGUI::Editbox*)GUI->getRoot()->...