@@ -47,7 +47,7 @@ class DrawNodePictureTest : public DrawNodeExBaseTest
47
47
48
48
virtual std::string title () const override ;
49
49
virtual std::string subtitle () const override ;
50
- void update (float dt);
50
+ void update (float dt) override ;
51
51
52
52
private:
53
53
ax::extension::DrawNodeEx* drawNodeEx;
@@ -63,7 +63,7 @@ class DrawNodeMorphTest : public DrawNodeExBaseTest
63
63
64
64
virtual std::string title () const override ;
65
65
virtual std::string subtitle () const override ;
66
- void update (float dt);
66
+ void update (float dt) override ;
67
67
68
68
private:
69
69
ax::extension::DrawNodeEx* drawNodeEx;
@@ -96,7 +96,7 @@ class DrawNodeFireworkTest : public DrawNodeExBaseTest
96
96
97
97
virtual std::string title () const override ;
98
98
virtual std::string subtitle () const override ;
99
- void update (float dt);
99
+ void update (float dt) override ;
100
100
101
101
fireObj* createFireObjs (int count);
102
102
@@ -174,7 +174,7 @@ class DrawNodeThicknessTest : public DrawNodeExBaseTest
174
174
175
175
virtual std::string title () const override ;
176
176
virtual std::string subtitle () const override ;
177
- void update (float dt);
177
+ void update (float dt) override ;
178
178
179
179
void initSliders ();
180
180
void changeThickness (ax::Object* pSender, ax::ui::Slider::EventType type);
@@ -198,7 +198,7 @@ class DrawNodeVersionsTest : public DrawNodeExBaseTest
198
198
199
199
virtual std::string title () const override ;
200
200
virtual std::string subtitle () const override ;
201
- void update (float dt);
201
+ void update (float dt) override ;
202
202
203
203
private:
204
204
ax::extension::DrawNodeEx* drawNodeEx;
@@ -225,7 +225,7 @@ class DrawNodePieTest : public DrawNodeExBaseTest
225
225
226
226
virtual std::string title () const override ;
227
227
virtual std::string subtitle () const override ;
228
- void update (float dt);
228
+ void update (float dt) override ;
229
229
230
230
void initSliders ();
231
231
void changeStartAngle (ax::Object* pSender, ax::ui::Slider::EventType type);
@@ -254,7 +254,7 @@ class DrawNodeMethodesTest : public DrawNodeExBaseTest
254
254
255
255
virtual std::string title () const override ;
256
256
virtual std::string subtitle () const override ;
257
- void update (float dt);
257
+ void update (float dt) override ;
258
258
259
259
void sliderCallback (ax::Object* sender, ax::ui::Slider::EventType type);
260
260
void listviewCallback (ax::Object* sender, ax::ui::ListView::EventType type);
@@ -288,7 +288,7 @@ class DrawNodePerformaneTest : public DrawNodeExBaseTest
288
288
289
289
virtual std::string title () const override ;
290
290
virtual std::string subtitle () const override ;
291
- void update (float dt);
291
+ void update (float dt) override ;
292
292
293
293
void sliderCallback (ax::Object* sender, ax::ui::Slider::EventType type);
294
294
void listviewCallback (ax::Object* sender, ax::ui::ListView::EventType type);
@@ -319,7 +319,7 @@ class DrawNodeHeartTest : public DrawNodeExBaseTest
319
319
320
320
virtual std::string title () const override ;
321
321
virtual std::string subtitle () const override ;
322
- void update (float dt);
322
+ void update (float dt) override ;
323
323
324
324
private:
325
325
ax::extension::DrawNodeEx* drawNodeEx;
@@ -338,7 +338,7 @@ class DrawNodeDrawInWrongOrder_Issue1888 : public DrawNodeExBaseTest
338
338
339
339
virtual std::string title () const override ;
340
340
virtual std::string subtitle () const override ;
341
- void update (float dt);
341
+ void update (float dt) override ;
342
342
343
343
private:
344
344
ax::extension::DrawNodeEx* drawNodeEx;
@@ -380,7 +380,7 @@ class DrawNodeCocos2dxBetterCircleRendering : public DrawNodeExBaseTest
380
380
381
381
virtual std::string title () const override ;
382
382
virtual std::string subtitle () const override ;
383
- void update (float dt);
383
+ void update (float dt) override ;
384
384
385
385
void initSliders ();
386
386
void changeThreshold (Object* pSender, ax::ui::Slider::EventType type);
@@ -426,7 +426,7 @@ class DrawNodeCocos2dxDrawNodePieTest : public DrawNodeExBaseTest
426
426
427
427
virtual std::string title () const override ;
428
428
virtual std::string subtitle () const override ;
429
- void update (float dt);
429
+ void update (float dt) override ;
430
430
431
431
void initSliders ();
432
432
void changeStartAngle (Object* pSender, ax::ui::Slider::EventType type);
0 commit comments