X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fmenu%2Fxonotic%2Fdatasource.qh;h=87c614ab737b31a34d5a2c447693b69679e6a3a7;hb=b3317742ec9b098e482a7535e7994ee03b4e7849;hp=1ca3d5811fd316192c7ca4b86bbf5b10ada6ca5c;hpb=eac60648c4017e495060dd3ba9e50ac4bad5000a;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/menu/xonotic/datasource.qh b/qcsrc/menu/xonotic/datasource.qh index 1ca3d5811..87c614ab7 100644 --- a/qcsrc/menu/xonotic/datasource.qh +++ b/qcsrc/menu/xonotic/datasource.qh @@ -19,15 +19,15 @@ ENDCLASS(DataSource) CLASS(StringSource, DataSource) - ATTRIB(StringSource, StringSource_str, string, string_null) - ATTRIB(StringSource, StringSource_sep, string, string_null) + ATTRIB(StringSource, StringSource_str, string); + ATTRIB(StringSource, StringSource_sep, string); CONSTRUCTOR(StringSource, string str, string sep); METHOD(StringSource, getEntry, entity(entity this, int i, void(string name, string icon) returns)); METHOD(StringSource, reload, int(entity this, string filter)); ENDCLASS(StringSource) CLASS(CvarStringSource, StringSource) - ATTRIB(CvarStringSource, CvarStringSource_cvar, string, string_null) + ATTRIB(CvarStringSource, CvarStringSource_cvar, string); CONSTRUCTOR(CvarStringSource, string cv, string sep); METHOD(CvarStringSource, getEntry, entity(entity this, int i, void(string name, string icon) returns)); METHOD(CvarStringSource, reload, int(entity this, string filter));