Skip to content

Commit

Permalink
csd-color-state.c: Fix build warning/error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtwebster committed Nov 14, 2024
1 parent 1b36b7a commit 57b8a0a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions plugins/color/csd-color-state.c
Original file line number Diff line number Diff line change
Expand Up @@ -1536,12 +1536,12 @@ static void
csd_color_state_init (CsdColorState *state)
{
/* track the active session */
state->session = gnome_session_manager_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES,
"org.gnome.SessionManager",
"/org/gnome/SessionManager",
NULL,
NULL);
state->session = G_DBUS_PROXY (gnome_session_manager_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES,
"org.gnome.SessionManager",
"/org/gnome/SessionManager",
NULL,
NULL));

#ifdef GDK_WINDOWING_X11
/* set the _ICC_PROFILE atoms on the root screen */
Expand Down

0 comments on commit 57b8a0a

Please sign in to comment.