X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=examples%2Fsimple-visuals-control%2Fsimple-visuals-example.cpp;h=535063a225242bd4e282fd1c485065e700c18b00;hb=1b19fd140ff139b5854a1a62447faf31b175d8f6;hp=1011243cef93ddc73222839564a4fc8589f064f0;hpb=94d678d62ca15faaced5deaf379f9ea4a6f16b7d;p=platform%2Fcore%2Fuifw%2Fdali-demo.git diff --git a/examples/simple-visuals-control/simple-visuals-example.cpp b/examples/simple-visuals-control/simple-visuals-example.cpp index 1011243..535063a 100644 --- a/examples/simple-visuals-control/simple-visuals-example.cpp +++ b/examples/simple-visuals-control/simple-visuals-example.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 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. @@ -28,14 +28,13 @@ namespace { // Style sheet to be used by this application -const char* SIMPLE_DEMO_THEME( DEMO_STYLE_DIR "simple-example-theme.json" ); -} +const char* SIMPLE_DEMO_THEME(DEMO_STYLE_DIR "simple-example-theme.json"); +} // namespace -/// Entry point for applications -int DALI_EXPORT_API main( int argc, char** argv ) +int DALI_EXPORT_API main(int argc, char** argv) { - Application application = Application::New( &argc, &argv, SIMPLE_DEMO_THEME ); // Use the above defined style sheet for this application. - Demo::SimpleVisualsApplication simpleVisualsApplication( application ); + Application application = Application::New(&argc, &argv, SIMPLE_DEMO_THEME); // Use the above defined style sheet for this application. + Demo::SimpleVisualsApplication simpleVisualsApplication(application); application.MainLoop(); return 0; }