~ubuntu-branches/ubuntu/oneiric/almanah/oneiric

« back to all changes in this revision

Viewing changes to src/date-entry-dialog.c

  • Committer: Bazaar Package Importer
  • Author(s): Angel Abad
  • Date: 2011-04-18 16:21:36 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110418162136-l0ik4snrl420srer
Tags: 0.8.0-1
* New upstream release
* Temporarily remove evolution support in unstable
* Disable AM_GCONF_SOURCE_2 macro to fix ftbfs in unstable
  - debian/patches/disable_am_gconf_source_2
  - Build-Depends on dh-autoreconf
  - Use --with autoreconf in rules
* debian/control:
  - Build-Depends on libgtk-3-dev
* debian/rules:
  - Remove unnecessary override_dh_auto_install
* debian/copyright:
  - Update copyright years
  - Update license stanza
* Bump Standards-Version to 3.9.1 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
        self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, ALMANAH_TYPE_DATE_ENTRY_DIALOG, AlmanahDateEntryDialogPrivate);
69
69
 
70
70
        g_date_clear (&(self->priv->date), 1);
71
 
        g_signal_connect (self, "response", G_CALLBACK (gtk_widget_hide_all), self);
72
 
        gtk_dialog_set_has_separator (GTK_DIALOG (self), FALSE);
 
71
        g_signal_connect (self, "response", G_CALLBACK (gtk_widget_hide), self);
73
72
        gtk_window_set_resizable (GTK_WINDOW (self), FALSE);
74
73
        gtk_window_set_title (GTK_WINDOW (self), _("Select Date"));
75
74
        gtk_window_set_transient_for (GTK_WINDOW (self), GTK_WINDOW (almanah->main_window));