~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/ai/api/ai_log.hpp.sq

  • Committer: Bazaar Package Importer
  • Author(s): Matthijs Kooijman, Matthijs Kooijman
  • Date: 2009-10-01 22:52:59 UTC
  • mfrom: (1.1.8 upstream) (2.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091001225259-5kpkp4sthbszpyif
[ Matthijs Kooijman ]
* New upstream release
* Use printf instead of echo -en in openttd-wrapper to make it POSIX
  compatible (Closes: #547758).
* Remove three patches that are now included in upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: ai_log.hpp.sq 15535 2009-02-21 00:43:18Z glx $ */
 
1
/* $Id: ai_log.hpp.sq 17235 2009-08-20 12:22:31Z rubidium $ */
2
2
/* THIS FILE IS AUTO-GENERATED; PLEASE DO NOT ALTER MANUALLY */
3
3
 
4
4
#include "ai_log.hpp"
17
17
        SQAILog.PreRegister(engine);
18
18
        SQAILog.AddConstructor<void (AILog::*)(), 1>(engine, "x");
19
19
 
20
 
        SQAILog.DefSQStaticMethod(engine, &AILog::Info,    "Info",    2, ".s");
21
 
        SQAILog.DefSQStaticMethod(engine, &AILog::Warning, "Warning", 2, ".s");
22
 
        SQAILog.DefSQStaticMethod(engine, &AILog::Error,   "Error",   2, ".s");
 
20
        SQAILog.DefSQStaticMethod(engine, &AILog::Info,    "Info",    2, "..");
 
21
        SQAILog.DefSQStaticMethod(engine, &AILog::Warning, "Warning", 2, "..");
 
22
        SQAILog.DefSQStaticMethod(engine, &AILog::Error,   "Error",   2, "..");
23
23
 
24
24
        SQAILog.PostRegister(engine);
25
25
}