X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fmenu%2Fxonotic%2Fradiobutton.c;h=8c353eae6725aec683419db78b88d6e3ce5274d5;hb=08ef9dbde8b5b1162a64cc4a1d34a8cb583bc411;hp=2591356a0971bab75284940d67c0a44d97a8eb66;hpb=365a0e5ad3869afd6805d6d72c0cd27f843fbcd8;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/menu/xonotic/radiobutton.c b/qcsrc/menu/xonotic/radiobutton.c index 2591356a0..8c353eae6 100644 --- a/qcsrc/menu/xonotic/radiobutton.c +++ b/qcsrc/menu/xonotic/radiobutton.c @@ -30,7 +30,7 @@ entity makeXonoticRadioButton(float theGroup, string theCvar, string theValue, s me.configureXonoticRadioButton(me, theGroup, theCvar, theValue, theText); return me; } -void configureXonoticRadioButtonXonoticRadioButton(entity me, float theGroup, string theCvar, string theValue, string theText) +void XonoticRadioButton_configureXonoticRadioButton(entity me, float theGroup, string theCvar, string theValue, string theText) { if(theCvar) { @@ -41,7 +41,7 @@ void configureXonoticRadioButtonXonoticRadioButton(entity me, float theGroup, st } me.configureRadioButton(me, theText, me.fontSize, me.image, theGroup, 0); } -void setCheckedXonoticRadioButton(entity me, float val) +void XonoticRadioButton_setChecked(entity me, float val) { if(val != me.checked) { @@ -49,7 +49,7 @@ void setCheckedXonoticRadioButton(entity me, float val) me.saveCvars(me); } } -void loadCvarsXonoticRadioButton(entity me) +void XonoticRadioButton_loadCvars(entity me) { if(me.cvarValue) { @@ -72,7 +72,7 @@ void loadCvarsXonoticRadioButton(entity me) } } } -void drawXonoticRadioButton(entity me) +void XonoticRadioButton_draw(entity me) { if not(me.cvarValue) if not(me.cvarName) @@ -91,7 +91,7 @@ void drawXonoticRadioButton(entity me) } SUPER(XonoticRadioButton).draw(me); } -void saveCvarsXonoticRadioButton(entity me) +void XonoticRadioButton_saveCvars(entity me) { if(me.cvarValue) {