wmaker: removed variable whose value never changed
commit30c8c1c6459d5a6403ce3921df4c96d76f23327b
authorChristophe CURIS <christophe.curis@free.fr>
Fri, 4 Jul 2014 21:28:40 +0000 (4 23:28 +0200)
committerCarlos R. Mafra <crmafra@gmail.com>
Sun, 6 Jul 2014 00:07:55 +0000 (6 01:07 +0100)
tree57e6171aa65a13e3264e0ff1cc6a3209eb247f21
parent1bac0c9dcbdbaa6d02737eb806c7eae5c3338d69
wmaker: removed variable whose value never changed

In the function wHandleAppIconMove there is an event handling loop
which was supposed to be finished with the variable 'done'.

As the code is using 'return' inside the loop, which is both more
convenient and easier to read, this variable was never set, making
the loop an infinite looking loop.

This patch removes the variable so it will be clear how it behaves.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
src/appicon.c