X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=examples%2Ftext-label-multi-language%2Ftext-label-multi-language-example.cpp;h=ba54b57a91942c969dd71720b1568f47f04d268f;hb=1c22cc2b91aaac24f5d39a2b7d36ba53e3386487;hp=8005b5813ec37d18b077aee77cbc1fd01029883b;hpb=2cfafe99d72918b8b1326e0726b9b6ae8e0191f0;p=platform%2Fcore%2Fuifw%2Fdali-demo.git diff --git a/examples/text-label-multi-language/text-label-multi-language-example.cpp b/examples/text-label-multi-language/text-label-multi-language-example.cpp index 8005b58..ba54b57 100644 --- a/examples/text-label-multi-language/text-label-multi-language-example.cpp +++ b/examples/text-label-multi-language/text-label-multi-language-example.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -134,19 +134,10 @@ private: float mLastPoint; }; -void RunTest( Application& application ) -{ - TextLabelMultiLanguageExample test( application ); - - application.MainLoop(); -} - -/** Entry point for Linux & Tizen applications */ int DALI_EXPORT_API main( int argc, char **argv ) { Application application = Application::New( &argc, &argv, DEMO_THEME_PATH ); - - RunTest( application ); - + TextLabelMultiLanguageExample test( application ); + application.MainLoop(); return 0; }