From e9679b380214cb4dfda2777f0ee5c7674c86530d Mon Sep 17 00:00:00 2001 From: Corey Berla Date: Tue, 10 Jan 2023 10:26:04 -0800 Subject: general: Fix style for updated version of uncrustify The updated version of uncrustify didn't like this style, the new style doesn't look great either. --- src/nautilus-file-utilities.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/nautilus-file-utilities.c b/src/nautilus-file-utilities.c index dd3367d49..efe42a09c 100644 --- a/src/nautilus-file-utilities.c +++ b/src/nautilus-file-utilities.c @@ -639,18 +639,18 @@ special_directory_get_icon (GUserDirectory directory, gboolean symbolic) { #define ICON_CASE(x) \ - case G_USER_DIRECTORY_ ## x: \ - return (symbolic) ? g_themed_icon_new (NAUTILUS_ICON_FOLDER_ ## x) : g_themed_icon_new (NAUTILUS_ICON_FULLCOLOR_FOLDER_ ## x); + case G_USER_DIRECTORY_ ## x: \ + return (symbolic) ? g_themed_icon_new (NAUTILUS_ICON_FOLDER_ ## x) : g_themed_icon_new (NAUTILUS_ICON_FULLCOLOR_FOLDER_ ## x); switch (directory) { - ICON_CASE (DOCUMENTS); - ICON_CASE (DOWNLOAD); - ICON_CASE (MUSIC); - ICON_CASE (PICTURES); - ICON_CASE (PUBLIC_SHARE); - ICON_CASE (TEMPLATES); - ICON_CASE (VIDEOS); + ICON_CASE (DOCUMENTS); + ICON_CASE (DOWNLOAD); + ICON_CASE (MUSIC); + ICON_CASE (PICTURES); + ICON_CASE (PUBLIC_SHARE); + ICON_CASE (TEMPLATES); + ICON_CASE (VIDEOS); default: { -- cgit v1.2.1