aboutsummaryrefslogtreecommitdiff
path: root/src/ui/DeleteLater.cpp
blob: 8a40642fbd7a9d2b5530a5d8908d9827fc1775bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "cru/ui/DeleteLater.h"

#include "Helper.h"
#include "cru/platform/gui/UiApplication.h"

namespace cru::ui {
DeleteLaterImpl::~DeleteLaterImpl() {}

void DeleteLaterImpl::DeleteLater() {
  GetUiApplication()->SetImmediate([this] { delete this; });
}
}  // namespace cru::ui