~mdoyen/homebank/5.3.x

« back to all changes in this revision

Viewing changes to src/rep-vehicle.c

  • Committer: Maxime Doyen
  • Date: 2019-09-20 17:09:01 UTC
  • Revision ID: homebank@free.fr-20190920170901-ny1i69v8t3j80fbg
5.2.8 release

Show diffs side-by-side

added added

removed removed

Lines of Context:
760
760
        row++;
761
761
        label = make_label_widget(_("_From:"));
762
762
        gtk_grid_attach (GTK_GRID (table), label, 1, row, 1, 1);
763
 
        data->PO_mindate = gtk_date_entry_new();
 
763
        data->PO_mindate = gtk_date_entry_new(label);
764
764
        gtk_grid_attach (GTK_GRID (table), data->PO_mindate, 2, row, 1, 1);
765
765
 
766
766
        row++;
767
767
        label = make_label_widget(_("_To:"));
768
768
        gtk_grid_attach (GTK_GRID (table), label, 1, row, 1, 1);
769
 
        data->PO_maxdate = gtk_date_entry_new();
 
769
        data->PO_maxdate = gtk_date_entry_new(label);
770
770
        gtk_grid_attach (GTK_GRID (table), data->PO_maxdate, 2, row, 1, 1);
771
771
 
772
772