summaryrefslogtreecommitdiffstats
path: root/gui/objects.hpp
diff options
context:
space:
mode:
authorthat <github@that.at>2015-01-09 22:52:51 +0100
committerthat <github@that.at>2015-01-09 22:52:51 +0100
commit7d3b54f3c23b28c28f0b8dfc9b3e73ef344e772d (patch)
tree44d371177bd9da4d42b7b87833527b75afe83c5e /gui/objects.hpp
parentRun some actions in a separate thread (diff)
downloadandroid_bootable_recovery-7d3b54f3c23b28c28f0b8dfc9b3e73ef344e772d.tar
android_bootable_recovery-7d3b54f3c23b28c28f0b8dfc9b3e73ef344e772d.tar.gz
android_bootable_recovery-7d3b54f3c23b28c28f0b8dfc9b3e73ef344e772d.tar.bz2
android_bootable_recovery-7d3b54f3c23b28c28f0b8dfc9b3e73ef344e772d.tar.lz
android_bootable_recovery-7d3b54f3c23b28c28f0b8dfc9b3e73ef344e772d.tar.xz
android_bootable_recovery-7d3b54f3c23b28c28f0b8dfc9b3e73ef344e772d.tar.zst
android_bootable_recovery-7d3b54f3c23b28c28f0b8dfc9b3e73ef344e772d.zip
Diffstat (limited to 'gui/objects.hpp')
-rw-r--r--gui/objects.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/objects.hpp b/gui/objects.hpp
index 44c2b364e..76dbb4625 100644
--- a/gui/objects.hpp
+++ b/gui/objects.hpp
@@ -362,13 +362,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;