~ubuntu-branches/ubuntu/raring/almanah/raring-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Angel Abad
  • Date: 2012-10-29 10:14:18 UTC
  • mfrom: (1.4.1) (10.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20121029101418-k2c27xb0aku22zeg
Tags: 0.10.0-1~exp1
* Imported Upstream version 0.10.0
* debian/control:
  - Bump evolution Build-Depends ( >=3.6.0)
  - debian/control: Depends on evolution-common (>= 3.6.0)
* Bump Standards-Version to 3.9.4 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <gtk/gtk.h>
24
24
 
25
25
#include "date-entry-dialog.h"
26
 
#include "main.h"
27
26
#include "interface.h"
28
27
 
29
28
static void almanah_date_entry_dialog_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec);
71
70
        g_signal_connect (self, "response", G_CALLBACK (gtk_widget_hide), self);
72
71
        gtk_window_set_resizable (GTK_WINDOW (self), FALSE);
73
72
        gtk_window_set_title (GTK_WINDOW (self), _("Select Date"));
74
 
        gtk_window_set_transient_for (GTK_WINDOW (self), GTK_WINDOW (almanah->main_window));
75
73
}
76
74
 
77
75
static void
116
114
        const gchar *interface_filename = almanah_get_interface_filename ();
117
115
        const gchar *object_names[] = {
118
116
                "almanah_date_entry_dialog",
 
117
                "almanah_ui_manager", /* HACK: work around bgo#672789 */
119
118
                NULL
120
119
        };
121
120