Fix missing IMGUI_API and mismatching namespace internal's CreateNewWindowSettings (#2105)

This commit is contained in:
Loïc HAMOT
2018-09-27 12:59:22 +02:00
committed by omar
parent 61d94ff88e
commit 9aae21483a
2 changed files with 4 additions and 4 deletions

View File

@ -1456,7 +1456,7 @@ struct ImGuiInputTextCallbackData
// Helper functions for text manipulation.
// Use those function to benefit from the CallbackResize behaviors. Calling those function reset the selection.
ImGuiInputTextCallbackData();
IMGUI_API ImGuiInputTextCallbackData();
IMGUI_API void DeleteChars(int pos, int bytes_count);
IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL);
bool HasSelection() const { return SelectionStart != SelectionEnd; }