Sfoglia il codice sorgente

remove deprecated view_dispatcher_enable_queue

MX 1 anno fa
parent
commit
6906e9ce48
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      minesweeper.c

+ 1 - 1
minesweeper.c

@@ -34,7 +34,7 @@ static MineSweeperApp* app_alloc() {
     
     
     // Alloc View Dispatcher and enable queue
     // Alloc View Dispatcher and enable queue
     app->view_dispatcher = view_dispatcher_alloc();
     app->view_dispatcher = view_dispatcher_alloc();
-    view_dispatcher_enable_queue(app->view_dispatcher);
+    
     // Set View Dispatcher event callback context and callbacks
     // Set View Dispatcher event callback context and callbacks
     view_dispatcher_set_event_callback_context(app->view_dispatcher, app);
     view_dispatcher_set_event_callback_context(app->view_dispatcher, app);
     view_dispatcher_set_custom_event_callback(app->view_dispatcher, minesweeper_custom_event_callback);
     view_dispatcher_set_custom_event_callback(app->view_dispatcher, minesweeper_custom_event_callback);