Wiki compile error

06/10/2020 22:51 Misec#1
Hey,

got this compile error on the __WIKIPEDIA_ITEM system and don't know what to do with it since i'm kinda sure that everything is made correct.
[Only registered and activated users can see links. Click Here To Register...]

Does anyone know where could be the issue and could help me with it?


greets ~
06/10/2020 23:03 QuietSmoke#2
Quote:
Originally Posted by Misec View Post
Hey,

got this compile error on the __WIKIPEDIA_ITEM system and don't know what to do with it since i'm kinda sure that everything is made correct.
[Only registered and activated users can see links. Click Here To Register...]

Does anyone know where could be the issue and could help me with it?


greets ~
Function CWndComboBox::GetSelectedItemData is in __IMPROVE_MAP_SYSTEM
Possible this function disbaled;)
06/11/2020 13:07 Wezzy_Dev#3
Quote:
Originally Posted by Misec View Post
Hey,

got this compile error on the __WIKIPEDIA_ITEM system and don't know what to do with it since i'm kinda sure that everything is made correct.
[Only registered and activated users can see links. Click Here To Register...]

Does anyone know where could be the issue and could help me with it?


greets ~
Check WndWiki.h if included in Neuz
06/11/2020 15:08 Execrate#4
Quote:
Originally Posted by Misec View Post
Hey,

got this compile error on the __WIKIPEDIA_ITEM system and don't know what to do with it since i'm kinda sure that everything is made correct.

Does anyone know where could be the issue and could help me with it?

greets ~
Move

Code:
DWORD CWndComboBox::GetSelectedItemData( void ) const
{
	int nSelectedListNumber = m_wndListBox.GetCurSel();
	if( nSelectedListNumber == -1 )
	{
		return 0;
	}
	return m_wndListBox.GetItemData( nSelectedListNumber );
}
Code:
DWORD GetSelectedItemData(void) const;
outside of
Code:
__IMPROVE_MAP_SYSTEM
in WndControl.cpp + .h
06/11/2020 23:04 Misec#5
Quote:
Originally Posted by QuietSmoke View Post
Function CWndComboBox::GetSelectedItemData is in __IMPROVE_MAP_SYSTEM
Possible this function disbaled;)
Wasn't defined in Neuz, just defined it and got a few errors, but fixed them too by adding some code. So everythings fine now, thanks :)