From: Rudolf Polzer Date: Thu, 17 Jun 2010 06:55:26 +0000 (+0200) Subject: minor ENDCLASS fixes X-Git-Tag: xonotic-v0.1.0preview~541^2~23^2^2~7 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ab31fcf1a4201b616024bc5eaab84a389beba84c;p=xonotic%2Fxonotic-data.pk3dir.git minor ENDCLASS fixes --- diff --git a/qcsrc/menu/anim/keyframe.c b/qcsrc/menu/anim/keyframe.c index 95fbf63cc..e5f27a947 100644 --- a/qcsrc/menu/anim/keyframe.c +++ b/qcsrc/menu/anim/keyframe.c @@ -6,7 +6,7 @@ CLASS(Keyframe) EXTENDS(Animation) ATTRIB(Keyframe, currentChild, entity, NULL) ATTRIB(Keyframe, firstChild, entity, NULL) ATTRIB(Keyframe, lastChild, entity, NULL) -ENDCLASS(Animation) +ENDCLASS(Keyframe) entity makeHostedKeyframe(entity, void(entity, float), float, float, float); entity makeKeyframe(entity, void(entity, float), float, float, float); float getNewChildStart(entity); diff --git a/qcsrc/menu/xonotic/bigbutton.c b/qcsrc/menu/xonotic/bigbutton.c index 8a2a11757..c5243e06c 100644 --- a/qcsrc/menu/xonotic/bigbutton.c +++ b/qcsrc/menu/xonotic/bigbutton.c @@ -3,7 +3,7 @@ CLASS(XonoticBigButton) EXTENDS(XonoticButton) METHOD(XonoticBigButton, configureXonoticBigButton, void(entity, string, vector)) ATTRIB(XonoticBigButton, image, string, SKINGFX_BUTTON_BIG) ATTRIB(XonoticBigButton, grayImage, string, SKINGFX_BUTTON_BIG_GRAY) -ENDCLASS(XonoticButton) +ENDCLASS(XonoticBigButton) entity makeXonoticButton(string theText, vector theColor); #endif diff --git a/qcsrc/menu/xonotic/bigcommandbutton.c b/qcsrc/menu/xonotic/bigcommandbutton.c index a667f0e61..d7aa504e2 100644 --- a/qcsrc/menu/xonotic/bigcommandbutton.c +++ b/qcsrc/menu/xonotic/bigcommandbutton.c @@ -3,7 +3,7 @@ CLASS(XonoticBigCommandButton) EXTENDS(XonoticCommandButton) METHOD(XonoticBigCommandButton, configureXonoticBigCommandButton, void(entity, string, vector, string, float)) ATTRIB(XonoticBigCommandButton, image, string, SKINGFX_BUTTON_BIG) ATTRIB(XonoticBigCommandButton, grayImage, string, SKINGFX_BUTTON_BIG_GRAY) -ENDCLASS(XonoticCommandButton) +ENDCLASS(XonoticBigCommandButton) entity makeXonoticBigCommandButton(string theText, vector theColor, string theCommand, float closesMenu); #endif