comparison Applications/Generic/NativeStoneApplicationContext.cpp @ 516:11fa6f00e33c bgo-commands-codegen

Dummy changes (warnings, dummy dtor to check proper deletion, line wrapping) + fixes for AM changes (Corner renamed to ControlPoint...)
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 12 Mar 2019 08:51:15 +0100
parents a750f11892ec
children 4f2416d519b4
comparison
equal deleted inserted replaced
515:1dbf2d9ed1e4 516:11fa6f00e33c
49 StoneApplicationContext(broker), 49 StoneApplicationContext(broker),
50 centralViewport_(broker), 50 centralViewport_(broker),
51 stopped_(true), 51 stopped_(true),
52 updateDelayInMs_(100) // By default, 100ms between each refresh of the content 52 updateDelayInMs_(100) // By default, 100ms between each refresh of the content
53 { 53 {
54 srand(time(NULL)); 54 srand(static_cast<unsigned int>(time(NULL)));
55 } 55 }
56 56
57 57
58 void NativeStoneApplicationContext::Start() 58 void NativeStoneApplicationContext::Start()
59 { 59 {