diff options
Diffstat (limited to 'gui/objects.hpp')
-rw-r--r-- | gui/objects.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/objects.hpp b/gui/objects.hpp index 44c2b364e..a89f48680 100644 --- a/gui/objects.hpp +++ b/gui/objects.hpp @@ -285,7 +285,7 @@ protected: int doAction(Action action); bool needsToRunInSeparateThread(const Action& action); void simulate_progress_bar(void); - int flash_zip(std::string filename, std::string pageName, int* wipe_cache); + int flash_zip(std::string filename, int* wipe_cache); void reinject_after_flash(); void operation_start(const string operation_name); void operation_end(const int operation_status); @@ -352,6 +352,7 @@ protected: int changefilesystem(std::string arg); int startmtp(std::string arg); int stopmtp(std::string arg); + int flashimage(std::string arg); int simulate; }; @@ -362,13 +363,12 @@ public: ActionThread(); ~ActionThread(); - void threadActions(GUIAction *act, size_t start_index); + void threadActions(GUIAction *act); void run(void *data); private: struct ThreadData { GUIAction *act; - size_t start_index; }; pthread_t m_thread; |