r5sdk/r5dev/thirdparty/cppnet/cppkore/LabelEditEventArgs.cpp
Kawe Mazidjatari 04bee896be Fix string/wstring type conflict
cppkore uses string/wstring as StringBase while we use std::string/std::wstring as string/wstring. Changed all types in cppkore to String/WString instead.
2022-05-21 21:51:35 +02:00

16 lines
308 B
C++

#include "stdafx.h"
#include "LabelEditEventArgs.h"
namespace Forms
{
LabelEditEventArgs::LabelEditEventArgs(int32_t Item)
: Item(Item), Label(""), CancelEdit(false)
{
}
LabelEditEventArgs::LabelEditEventArgs(int32_t Item, const String& Label)
: Item(Item), Label(Label), CancelEdit(false)
{
}
}