grab is never used even though it is assigned. This patch removes
the declaration and the assignment.
Signed-off-by: Erik Hovland <erik@hovland.org>
---
mythplugins/mythmovies/ignyte/main.cpp | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/mythplugins/mythmovies/ignyte/main.cpp b/mythplugins/mythmovies/ignyte/main.cpp
index 8b20f70..ebd4b7b 100644
|
a
|
b
|
int main(int argc, char **argv)
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | QApplication app(argc, argv, false); |
| 23 | | IgnyteGrabber *grab; |
| 24 | | grab = new IgnyteGrabber(zip, radius, &app); |
| | 23 | new IgnyteGrabber(zip, radius, &app); |
| 25 | 24 | return app.exec(); |
| 26 | 25 | } |
| 27 | 26 | |