~ubuntu-branches/ubuntu/precise/evolution-data-server/precise

« back to all changes in this revision

Viewing changes to libedataserverui/e-name-selector-list.c

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre, Ken VanDine, Mathieu Trudel-Lapierre
  • Date: 2011-06-23 17:40:41 UTC
  • mfrom: (1.1.88 upstream)
  • Revision ID: james.westby@ubuntu.com-20110623174041-4wd9jvs07wfinyet
Tags: 3.1.2-0ubuntu1
* New upstream version
  - bgo 589495 - Search folder by Size (KB) counts bytes, not KB (LP: #385859)
  - bgo 649757 - Filtering on a source account always succeeded (LP: #781391)
  - bgo 418954 - Add a separate entry combo for port numbers (LP: #160304)

[ Ken VanDine ]
* debian/libebook1.2-dev.install
  - Include EBook-1.2.gir
* debian/control
  - Added gir1.2-ebook-1.2 binary

[ Mathieu Trudel-Lapierre ]
* debian/control: drop libegroupwise1.2-13, libegroupwise-dev, they are now
  an independent module.
* debian/libegroupwise1.2-13.install,
  debian/libegroupwise1.2-dev.install,
  debian/lintian/libegroupwise1.2-13: dropped, see above.
* debian/control, debian/libe*.install, debian/lintian/libe*: rename and
  update files where needed to follow upstream soname changes.
* debian/control: bump evolution-data-server's Depends to libcamel-1.2-26.
* debian/rules: update to use makeshlibs with the new libcamel soname.

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
                          NULL, NULL, GDK_CURRENT_TIME);
109
109
 
110
110
        gdk_keyboard_grab (window, TRUE, GDK_CURRENT_TIME);
111
 
        gtk_widget_grab_focus ((GtkWidget *)list);
 
111
        gtk_widget_grab_focus ((GtkWidget *) list);
112
112
 
113
113
        /* Build the listview from the model */
114
114
        entry = E_NAME_SELECTOR_ENTRY (list);
152
152
        if (gtk_widget_get_visible (GTK_WIDGET (list->priv->popup))
153
153
            && !gtk_widget_has_grab (GTK_WIDGET (list->priv->popup))) {
154
154
                enl_popup_ungrab (list);
155
 
                gtk_widget_hide ((GtkWidget *)list->priv->popup);
 
155
                gtk_widget_hide ((GtkWidget *) list->priv->popup);
156
156
 
157
157
                return FALSE;
158
158
        }
169
169
                return FALSE;
170
170
 
171
171
        /* if we come here, it's usually time to popdown */
172
 
        gtk_widget_hide ((GtkWidget *)list->priv->popup);
 
172
        gtk_widget_hide ((GtkWidget *) list->priv->popup);
173
173
 
174
174
        return TRUE;
175
175
}
438
438
        if (is_list) {
439
439
                const GList *dests = e_destination_list_get_dests (destination);
440
440
                GList *iters;
441
 
                gint length = g_list_length ((GList *)dests);
 
441
                gint length = g_list_length ((GList *) dests);
442
442
 
443
 
                for (iters = (GList *)dests; iters; iters = iters->next) {
 
443
                for (iters = (GList *) dests; iters; iters = iters->next) {
444
444
                        EDestination *dest = (EDestination *) iters->data;
445
445
                        const gchar *email = e_destination_get_email (dest);
446
446
 
548
548
                   && event->keyval != GDK_KEY_Control_R && event->keyval != GDK_KEY_Control_L) {
549
549
                enl_popup_ungrab (list);
550
550
                gtk_widget_hide ( GTK_WIDGET (list->priv->popup));
551
 
                gtk_widget_event (GTK_WIDGET (list), (GdkEvent *)event);
 
551
                gtk_widget_event (GTK_WIDGET (list), (GdkEvent *) event);
552
552
                return TRUE;
553
553
        }
554
554