Skip to content

Commit

Permalink
add sed script for code transform
Browse files Browse the repository at this point in the history
  • Loading branch information
renefritze committed Jan 7, 2012
1 parent 1aa1b47 commit f00f238
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tools/transform.sed
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
s;const User\*;const UserPtr;g
s;User\*;UserPtr;g
s;const Battle\*;const BattlePtr;g
s;Battle\*;BattlePtr;g
s;wxString;std::string;g
s;UnitSyncMod;UnitsyncMod;g
s;UnitSyncMap;UnitsyncMap;g
s;wxColour;lslColor;g
s;wxColor;lslColor;g
s;wxArrayString;StringVector;g
s;IsEmpty;empty;g
s;colour;color;g
s;GetNick;Nick;g

0 comments on commit f00f238

Please sign in to comment.