mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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.
16 lines
308 B
C++
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)
|
|
{
|
|
}
|
|
}
|