~allanlesage/libcolumbus/enable-coverage-option

« back to all changes in this revision

Viewing changes to tools/hudtest.cc

  • Committer: Jussi Pakkanen
  • Date: 2013-04-03 13:50:54 UTC
  • mto: This revision was merged to the branch mainline in revision 443.
  • Revision ID: jussi.pakkanen@canonical.com-20130403135054-gzmxj4hsb1ts7s03
Enable -Wextra and fix unused warnings it produces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    vector<string> pathSource, commandSource;
49
49
};
50
50
 
51
 
static gboolean delete_event(GtkWidget *widget, GdkEvent *event, gpointer data) {
 
51
static gboolean delete_event(GtkWidget */*widget*/, GdkEvent */*event*/, gpointer /*data*/) {
52
52
    gtk_main_quit();
53
53
    return TRUE;
54
54
}
55
55
 
56
 
static void destroy(GtkWidget *widget, gpointer data) {
 
56
static void destroy(GtkWidget */*widget*/, gpointer /*data*/) {
57
57
    gtk_main_quit ();
58
58
}
59
59
 
60
 
static void doSearch(GtkWidget *widget, gpointer data) {
 
60
static void doSearch(GtkWidget */*widget*/, gpointer data) {
61
61
    app_data *app = (app_data*) data;
62
62
    MatchResults matches;
63
63
    GtkTreeIter iter;