Skip to content

Commit

Permalink
Fixed TextBuffer reserve binding
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan63 committed Feb 11, 2018
1 parent ea4dbf2 commit c2f3561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imgui/util/ImGuiTextBuffer.hx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ extern class ImGuiTextBuffer
@:native('size') public function size() : Int;
@:native('empty') public function empty() : Bool;
@:native('clear') public function clear() : Void;
@:native('reserve') public function reserve() : Void;
@:native('reserve') public function reserve(_capacity : Int) : Void;
@:native('c_str') public function c_str() : cpp.ConstCharStar;
public inline function append(_string : String) : Void {
untyped __cpp__('{0}.appendf("%s", {1}.c_str())', this, _string);
Expand Down

0 comments on commit c2f3561

Please sign in to comment.