~ubuntu-branches/ubuntu/saucy/cairo-dock-plug-ins/saucy

« back to all changes in this revision

Viewing changes to RSSreader/src/applet-rss.c

Tags: upstream-3.0.0.0beta1
ImportĀ upstreamĀ versionĀ 3.0.0.0beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
682
682
        if (myData.pItemList != NULL && myData.pItemList->next != NULL && (myData.pItemList->next->next != NULL || ! myData.bError))  // on construit le dialogue contenant toutes les infos.
683
683
        {
684
684
                // On construit le widget GTK qui contient les lignes avec les liens.
685
 
                GtkWidget *pVBox = gtk_vbox_new (FALSE, 0);  // le widget qu'on va inserer dans le dialogue.
 
685
                GtkWidget *pVBox = _gtk_vbox_new (0);  // le widget qu'on va inserer dans le dialogue.
686
686
                GtkWidget *pScrolledWindow = gtk_scrolled_window_new (NULL, NULL);
687
 
                gtk_widget_set (pScrolledWindow, "height-request", 250, NULL);
 
687
                g_object_set (pScrolledWindow, "height-request", 250, NULL);
688
688
                gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (pScrolledWindow), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
689
689
                gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (pScrolledWindow), pVBox);
690
690