]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
minor ENDCLASS fixes
authorRudolf Polzer <divverent@alientrap.org>
Thu, 17 Jun 2010 06:55:26 +0000 (08:55 +0200)
committerRudolf Polzer <divverent@alientrap.org>
Thu, 17 Jun 2010 06:56:13 +0000 (08:56 +0200)
qcsrc/menu/anim/keyframe.c
qcsrc/menu/xonotic/bigbutton.c
qcsrc/menu/xonotic/bigcommandbutton.c

index 95fbf63ccefe5b15d5acc6a019db25a868d2fedf..e5f27a9477c2e046370e8b36a3a8357a6f9c1760 100644 (file)
@@ -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);
index 8a2a11757d80a891a8bec3c36d9b605bdfaf2780..c5243e06c442b13f6de86df9135a983a2f24202a 100644 (file)
@@ -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
 
index a667f0e6121a50887d19ebd004e4f74947b1731f..d7aa504e24e59f506345c58ddc8a20dfc2557151 100644 (file)
@@ -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