aboutsummaryrefslogtreecommitdiff
path: root/composer/Pattern.hpp
diff options
context:
space:
mode:
authormescalinum <mescalinum@users.sourceforge.net>2009-09-26 18:28:46 +0000
committermescalinum <mescalinum@users.sourceforge.net>2009-09-26 18:28:46 +0000
commit48166a3836ea82ebbab1d622d5ff770eefbd59a1 (patch)
treed16abd76aa47c5e1cece01689db07051b80c5454 /composer/Pattern.hpp
parentbecd4c66f77da3ff9078ec06aebb9ade3247e30b (diff)
- fix update issues with resize/rename/creation
- allow to resize patterns by any dimension - add license docs - makefile fixes svn path=/trunk/externals/ffext/; revision=12466
Diffstat (limited to 'composer/Pattern.hpp')
-rw-r--r--composer/Pattern.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/composer/Pattern.hpp b/composer/Pattern.hpp
index 1607414..fbafcec 100644
--- a/composer/Pattern.hpp
+++ b/composer/Pattern.hpp
@@ -26,6 +26,7 @@ public:
void setCell(int row, int col, Cell cell);
Cell getCell(int row, int col);
inline const string &getName() {return name;}
+ inline void setName(const string &newName) {name = newName;}
inline unsigned int getRows() {return rows.size();}
inline unsigned int getColumns() {return columns;}
};