Link group_wheel.cpp, ref #176

This commit is contained in:
kaetemi 2014-08-25 14:56:29 +02:00
parent 46aa5cef29
commit 573fb44088
2 changed files with 4 additions and 0 deletions

View file

@ -24,6 +24,8 @@ NLMISC_REGISTER_OBJECT(CViewBase, CInterfaceGroupWheel, std::string, "group_whee
namespace NLGUI
{
void force_link_group_wheel_cpp() { }
// *****************************************************************************************************************
CInterfaceGroupWheel::CInterfaceGroupWheel(const TCtorParam &param) : CInterfaceGroup(param)
{

View file

@ -26,6 +26,7 @@ namespace NLGUI
void ifexprufct_forcelink();
void force_link_dbgroup_select_number_cpp();
void force_link_dbgroup_combo_box_cpp();
void force_link_group_wheel_cpp();
/// Necessary so the linker doesn't drop the code of these classes from the library
void LinkHack()
@ -37,5 +38,6 @@ namespace NLGUI
ifexprufct_forcelink();
force_link_dbgroup_select_number_cpp();
force_link_dbgroup_combo_box_cpp();
force_link_group_wheel_cpp();
}
}