From 102f811d0277afefe5c90762c0c4cc11ab69713c Mon Sep 17 00:00:00 2001 From: truebrain Date: Mon, 19 Dec 2011 21:06:06 +0000 Subject: (svn r23636) -Add: introduce ScriptText in parameters where it can be used --- src/script/api/script_goal.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/script/api/script_goal.hpp') diff --git a/src/script/api/script_goal.hpp b/src/script/api/script_goal.hpp index ac7d8f449..2fad1e843 100644 --- a/src/script/api/script_goal.hpp +++ b/src/script/api/script_goal.hpp @@ -52,14 +52,14 @@ public: /** * Create a new goal. * @param company The company to create the goal for, or ScriptCompany::COMPANY_INVALID for all. - * @param goal The goal to add to the GUI. + * @param goal The goal to add to the GUI (can be either a raw string, or a ScriptText object). * @param type The type of the goal. * @param destination The destination of the #type type. * @return The new GoalID, or GOAL_INVALID if it failed. - * @pre goal != NULL. + * @pre goal != NULL && len(goal) != 0. * @pre company == COMPANY_INVALID || ResolveCompanyID(company) != COMPANY_INVALID. */ - static GoalID New(ScriptCompany::CompanyID company, const char *goal, GoalType type, uint32 destination); + static GoalID New(ScriptCompany::CompanyID company, Text *goal, GoalType type, uint32 destination); /** * Remove a goal from the list. -- cgit v1.2.3-54-g00ecf