Ticket #5551: mythmovies-defects.patch

File mythmovies-defects.patch, 720 bytes (added by Erik Hovland <erik@…>, 16 years ago)

removes unnecessary assignment

  • mythplugins/mythmovies/ignyte/main.cpp

    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) 
    2020    }
    2121
    2222    QApplication app(argc, argv, false);
    23     IgnyteGrabber *grab;
    24     grab = new IgnyteGrabber(zip, radius, &app);
     23    new IgnyteGrabber(zip, radius, &app);
    2524    return app.exec();
    2625}
    2726