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