Begin support for dynamic prefs options
This commit is contained in:
@@ -51,3 +51,14 @@ const ConfOption *FindConfOption( CString name )
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void ConfOption::MakeOptionsList( CStringArray &out ) const
|
||||
{
|
||||
if( MakeOptionsListCB == NULL )
|
||||
{
|
||||
out = names;
|
||||
return;
|
||||
}
|
||||
|
||||
MakeOptionsListCB( out );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user