1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-30 07:06:43 +00:00

Put the id in the quote.

This commit is contained in:
Marek Kochanowicz 2014-02-15 22:14:27 +01:00
parent ec8c8a9d88
commit 45d9364195
2 changed files with 3 additions and 5 deletions

View file

@ -61,8 +61,7 @@ void CSVWorld::ScriptEdit::dropEvent (QDropEvent* event)
{ {
if (mAllowedTypes.contains (it->getType())) if (mAllowedTypes.contains (it->getType()))
{ {
insertPlainText (QString::fromStdString (it->getId() + " ")); QString::fromStdString ('"' + it->getId() + '"'));
} }
} }
} }
// kate: indent-mode cstyle; indent-width 4; replace-tabs on;

View file

@ -26,5 +26,4 @@ namespace CSVWorld
void dragMoveEvent (QDragMoveEvent* event); void dragMoveEvent (QDragMoveEvent* event);
}; };
} }
#endif // SCRIPTEDIT_H #endif // SCRIPTEDIT_H
// kate: indent-mode cstyle; indent-width 4; replace-tabs on;