Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoettlicher committed Jul 16, 2012
1 parent 579f602 commit 9423645
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions SOURCECONF.cmake
Expand Up @@ -19,6 +19,9 @@ ygtkpkgvestigialdialog.cc
ygtktreemodel.cc
yzypptags.cc
yzyppwrapper.cc
ygtkcellrendererbutton.c
ygtkcellrenderersidebutton.c
ygtkcellrenderertext.c
)

SET( ${TARGETLIB}_HEADERS
Expand Down
4 changes: 2 additions & 2 deletions src/ygtkpkgvestigialdialog.cc
Expand Up @@ -180,7 +180,7 @@ static gboolean fill_list_idle_cb (void *data)
impl->view->setList (list);

gtk_widget_hide (impl->progressbar);
gdk_window_set_cursor (impl->dialog->window, NULL);
// FIXME gdk_window_set_cursor (impl->dialog->window, NULL);
gtk_dialog_set_response_sensitive (GTK_DIALOG (impl->dialog), 2, unneeded.size());
gtk_window_present (GTK_WINDOW (impl->dialog));
return FALSE;
Expand Down Expand Up @@ -229,7 +229,7 @@ YGtkPkgVestigialDialog::YGtkPkgVestigialDialog()
impl->dialog = dialog;

GdkCursor *cursor = gdk_cursor_new (GDK_WATCH);
gdk_window_set_cursor (dialog->window, cursor);
// FIXME gdk_window_set_cursor (dialog->window, cursor);
gdk_cursor_unref (cursor);

g_idle_add_full (G_PRIORITY_LOW, fill_list_idle_cb, impl, NULL);
Expand Down

0 comments on commit 9423645

Please sign in to comment.