diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-22 13:38:00 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-22 13:38:00 -0600 |
commit | e832e9f2ab4ef7c9649c5a43824c2c8f97d5c6df (patch) | |
tree | 1f6a56de772e0b9ad9b75253d7dc6fa98865e04e /sipgen/parser.y | |
parent | 71cbc66f6c877652370529d008263320a6cea74c (diff) | |
download | sip4-tqt-e832e9f2ab4ef7c9649c5a43824c2c8f97d5c6df.tar.gz sip4-tqt-e832e9f2ab4ef7c9649c5a43824c2c8f97d5c6df.zip |
Fix accidental rename of strings to tqunicode
Diffstat (limited to 'sipgen/parser.y')
-rw-r--r-- | sipgen/parser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sipgen/parser.y b/sipgen/parser.y index 2991f82..86885c3 100644 --- a/sipgen/parser.y +++ b/sipgen/parser.y @@ -5232,7 +5232,7 @@ static memberDef *findFunction(sipSpec *pt, moduleDef *mod, classDef *c_scope, int nrargs; /* Nr. of arguments. */ } slot_table[] = { {"__str__", str_slot, TRUE, 0}, - {"__unicode__", tqunicode_slot, TRUE, 0}, + {"__unicode__", unicode_slot, TRUE, 0}, {"__int__", int_slot, FALSE, 0}, {"__long__", long_slot, FALSE, 0}, {"__float__", float_slot, FALSE, 0}, |