summaryrefslogtreecommitdiffstats
path: root/src/ZYZSymbolSection.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2014-04-18 14:32:40 +0800
committerPeng Wu <alexepico@gmail.com>2014-04-18 14:32:40 +0800
commit1332a6ac060631e76ae64650e1e4997b90bae2e4 (patch)
treec49828768513d9348911af37c581ef0ff7c94c45 /src/ZYZSymbolSection.h
parent4a72d7e978f6348d93fe6a3c0c0916cc9ff882c9 (diff)
downloadibus-libzhuyin-1332a6ac060631e76ae64650e1e4997b90bae2e4.tar.gz
ibus-libzhuyin-1332a6ac060631e76ae64650e1e4997b90bae2e4.tar.xz
ibus-libzhuyin-1332a6ac060631e76ae64650e1e4997b90bae2e4.zip
add m_props member variable to sections
Diffstat (limited to 'src/ZYZSymbolSection.h')
-rw-r--r--src/ZYZSymbolSection.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ZYZSymbolSection.h b/src/ZYZSymbolSection.h
index 2f6d6ca..42e4ef8 100644
--- a/src/ZYZSymbolSection.h
+++ b/src/ZYZSymbolSection.h
@@ -27,9 +27,12 @@
namespace ZY {
+class ZhuyinProperties;
+
class SymbolSection {
public:
- SymbolSection (PhoneticEditor & editor) : m_editor (editor) {}
+ SymbolSection (PhoneticEditor & editor, ZhuyinProperties & props) :
+ m_editor (editor), m_props(props) {}
virtual ~SymbolSection () {}
public:
@@ -47,6 +50,7 @@ protected:
protected:
PhoneticEditor & m_editor;
+ ZhuyinProperties & m_props;
/* other variables. */
String m_type;