Files
GDevelop/IDE/DndTextObjectsEditor.cpp
Florian 31d9147350 Adapted to changes in GDCore.
git-svn-id: svn://localhost@1246 8062f311-0dae-4547-b526-b8ab9ac864a5
2014-02-06 20:03:52 +00:00

13 lines
248 B
C++

#include "GDCore/Tools/Log.h"
#include "DndTextObjectsEditor.h"
/**
* Handle text dropped to the editor : Do nothing for now
*/
bool DndTextObjectsEditor::OnDropText(wxCoord x, wxCoord y, const wxString& text)
{
return true;
}