Search found 4 matches

by ldrrn
Tue Mar 24, 2009 2:30 am
Forum: Bug reports
Topic: Don't close external open window
Replies: 2
Views: 489

comment added :)
by ldrrn
Mon Mar 23, 2009 12:09 pm
Forum: Bug reports
Topic: Don't close external open window
Replies: 2
Views: 489

Don't close external open window

possible to change


//! notifies the device that it should close itself
void CIrrDeviceWin32::closeDevice()
{
MSG msg;
PeekMessage(&msg, NULL, WM_QUIT, WM_QUIT, PM_REMOVE);
PostQuitMessage(0);
PeekMessage(&msg, NULL, WM_QUIT, WM_QUIT, PM_REMOVE);
DestroyWindow(HWnd);
}


to


//! notifies ...
by ldrrn
Sun Jul 20, 2008 2:18 pm
Forum: Beginners Help
Topic: Xmlreader: getNodeData and getNodeName return same value?
Replies: 2
Views: 634

ok, i'd found the solution myself. indeed there's nothing wrong with irrxml.

i believe irrxml see a xml statement in this way

<AAA>BBB</AAA>

AAA, BBB and /AAA are considered as different node types.

therefore,
AAA -> io::EXN_ELEMENT, xml->getNodeName() == "AAA"
BBB -> io::EXN_TEXT, xml ...
by ldrrn
Sun Jul 20, 2008 9:25 am
Forum: Beginners Help
Topic: Xmlreader: getNodeData and getNodeName return same value?
Replies: 2
Views: 634

I'm having similar problem. I got my irrlicht from svn (revision 1420).

I have tried

irr::io::IrrXMLReader* xml = irr::io::createIrrXMLReader("config.xml");


and


irr::io::IXMLReaderUTF8 *xml = filesystem->createXMLReaderUTF8("config.xml");


both methods gave me same results, that was ...