mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
16 lines
466 B
C++
16 lines
466 B
C++
#include "text_field_delegate_app.h"
|
|
#include "apps_container.h"
|
|
|
|
TextFieldDelegateApp::TextFieldDelegateApp(Container * container, ViewController * rootViewController, const char * name
|
|
, const Image * icon) :
|
|
::App(container, rootViewController, name, icon),
|
|
ExpressionTextFieldDelegate()
|
|
{
|
|
}
|
|
|
|
Context * TextFieldDelegateApp::localContext() {
|
|
AppsContainer * appsContainer = (AppsContainer *)app()->container();
|
|
return appsContainer->globalContext();
|
|
}
|
|
|