diff options
Diffstat (limited to 'qtsharp/src/generator/Printer.cs')
-rw-r--r-- | qtsharp/src/generator/Printer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qtsharp/src/generator/Printer.cs b/qtsharp/src/generator/Printer.cs index cb90c4b8..1289f107 100644 --- a/qtsharp/src/generator/Printer.cs +++ b/qtsharp/src/generator/Printer.cs @@ -435,7 +435,7 @@ namespace QtCSharp { public string ImportAttrib { - get {return "\n\n"+tab+tab+"[DllImport(\"libqtc\", CharSet=CharSet.Ansi)]";} + get {return "\n\n"+tab+tab+"[DllImport(\"libtqtc\", CharSet=CharSet.Ansi)]";} } public string Import () { @@ -504,7 +504,7 @@ namespace QtCSharp { if (qtype.TQDCtors.Count > 0) ret += "\t\t\tqt_del_"+qtype.Name+" (rawObject);\n"; else - ret = "\n" + ret + "\t\t\t// libqtc lacks a qt_del_"+qtype.Name+" function\n"; + ret = "\n" + ret + "\t\t\t// libtqtc lacks a qt_del_"+qtype.Name+" function\n"; ret += "\t\t\tdeleted = true;\n"; } |