/* call-seq: * event_data.description=(String description) -> self * * This method makes it possible to change the description of * the server in the server list. */ static VALUE listServerUpdateEvent_setDescription(VALUE self, VALUE description) { bz_ListServerUpdateEvent *eventData; Data_Get_Struct(self, bz_ListServerUpdateEvent, eventData); eventData->description = RSTRING(StringValue(description))->ptr; return self; }