diff options
author | lukefromdc <[email protected]> | 2016-10-14 19:08:08 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2016-10-14 19:08:08 -0400 |
commit | 682877311e273282314ce40fc925209cd719a5af (patch) | |
tree | 1e23e11ab8451341a381c76f9c853b7742d46741 /src/caja-window-manage-views.c | |
parent | c27cc572f8f33bdfbbc3dfea8786d05a1818b910 (diff) | |
parent | a4822f6221c000f4db2a38a8b63e22ff64f6ee7e (diff) | |
download | caja-682877311e273282314ce40fc925209cd719a5af.tar.bz2 caja-682877311e273282314ce40fc925209cd719a5af.tar.xz |
Merge pull request #661 from lukefromdc/dev-gtk2fix-maybe
Fix GTK2 builds
Diffstat (limited to 'src/caja-window-manage-views.c')
-rw-r--r-- | src/caja-window-manage-views.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/caja-window-manage-views.c b/src/caja-window-manage-views.c index 2fa24e2a..74578525 100644 --- a/src/caja-window-manage-views.c +++ b/src/caja-window-manage-views.c @@ -33,7 +33,7 @@ #include "caja-location-bar.h" #include "caja-search-bar.h" #include "caja-pathbar.h" -#if ENABLE_LIBUNIQUE == (1) +#if ENABLE_LIBUNIQUE == (TRUE) #include "caja-main.h" #endif #include "caja-window-private.h" @@ -603,7 +603,7 @@ caja_window_slot_open_location_full (CajaWindowSlot *slot, } else if (target_navigation) { target_window = caja_application_create_navigation_window (window->application, -#if ENABLE_LIBUNIQUE == (1) +#if ENABLE_LIBUNIQUE == (TRUE) NULL, #endif gtk_window_get_screen (GTK_WINDOW (window))); @@ -1199,7 +1199,7 @@ got_file_info_for_view_selection_callback (CajaFile *file, GFile *location; GMountOperation *mount_op; MountNotMountedData *data; -#if ENABLE_LIBUNIQUE == (0) +#if ENABLE_LIBUNIQUE == (FALSE) CajaApplication *app; #endif slot = callback_data; @@ -1314,7 +1314,7 @@ got_file_info_for_view_selection_callback (CajaFile *file, * happens when a new window cannot display its initial URI. */ /* if this is the only window, we don't want to quit, so we redirect it to home */ -#if ENABLE_LIBUNIQUE == (0) +#if ENABLE_LIBUNIQUE == (FALSE) app = CAJA_APPLICATION (g_application_get_default ()); if (g_list_length (gtk_application_get_windows (GTK_APPLICATION (app))) == 1) { |