From ab31fcf1a4201b616024bc5eaab84a389beba84c Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Thu, 17 Jun 2010 08:55:26 +0200 Subject: [PATCH] minor ENDCLASS fixes --- qcsrc/menu/anim/keyframe.c | 2 +- qcsrc/menu/xonotic/bigbutton.c | 2 +- qcsrc/menu/xonotic/bigcommandbutton.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.2