Wrap ImGuiColorTextEdit in tracy namespace.

This commit is contained in:
Bartosz Taudul 2018-08-17 14:38:57 +02:00
parent 1529fa5b42
commit a90ed5b4b8
2 changed files with 11 additions and 1 deletions

View File

@ -6,6 +6,9 @@
#include "TextEditor.h" #include "TextEditor.h"
namespace tracy
{
static const int cTextStart = 7; static const int cTextStart = 7;
// TODO // TODO
@ -2124,3 +2127,5 @@ TextEditor::LanguageDefinition TextEditor::LanguageDefinition::Lua()
} }
return langDef; return langDef;
} }
}

View File

@ -8,7 +8,11 @@
#include <unordered_map> #include <unordered_map>
#include <map> #include <map>
#include <regex> #include <regex>
#include "imgui.h"
#include "../imgui/imgui.h"
namespace tracy
{
class TextEditor class TextEditor
{ {
@ -321,3 +325,4 @@ private:
Coordinates mInteractiveStart, mInteractiveEnd; Coordinates mInteractiveStart, mInteractiveEnd;
}; };
}