[Pkg-wmaker-commits] [wmaker] 05/21: Remove unused argument in save_appicon

Doug Torrance dtorrance-guest at moszumanska.debian.org
Fri Jan 8 01:40:37 UTC 2016


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch next
in repository wmaker.

commit b2c507898764bf33abc017675dda44ae31533812
Author: Rodolfo García Peñas (kix) <kix at kix.es>
Date:   Sun Aug 23 20:56:55 2015 +0200

    Remove unused argument in save_appicon
    
    The argument dock is always True, so can be removed.
    
    Signed-off-by: Rodolfo García Peñas (kix) <kix at kix.es>
---
 src/appicon.c | 6 +++---
 src/appicon.h | 2 +-
 src/dock.c    | 8 ++++----
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/appicon.c b/src/appicon.c
index 2a9db5c..9028d0e 100644
--- a/src/appicon.c
+++ b/src/appicon.c
@@ -433,14 +433,14 @@ void wAppIconPaint(WAppIcon *aicon)
 }
 
 /* Save the application icon, if it's a dockapp then use it with dock = True */
-void save_appicon(WAppIcon *aicon, Bool dock)
+void save_appicon(WAppIcon *aicon)
 {
 	char *path;
 
 	if (!aicon)
 		return;
 
-	if (dock && (!aicon->docked || aicon->attracted))
+	if (!aicon->docked || aicon->attracted)
 		return;
 
 	path = wIconStore(aicon->icon);
@@ -1190,7 +1190,7 @@ static void create_appicon_from_dock(WWindow *wwin, WApplication *wapp, Window m
 
 		/* Paint it */
 		wAppIconPaint(wapp->app_icon);
-		save_appicon(wapp->app_icon, True);
+		save_appicon(wapp->app_icon);
 	}
 }
 
diff --git a/src/appicon.h b/src/appicon.h
index eb1904b..44913b8 100644
--- a/src/appicon.h
+++ b/src/appicon.h
@@ -78,7 +78,7 @@ void wAppIconPaint(WAppIcon *aicon);
 void wAppIconMove(WAppIcon *aicon, int x, int y);
 void create_appicon_for_application(WApplication *wapp, WWindow *wwin);
 void removeAppIconFor(WApplication * wapp);
-void save_appicon(WAppIcon *aicon, Bool dock);
+void save_appicon(WAppIcon *aicon);
 void paint_app_icon(WApplication *wapp);
 void unpaint_app_icon(WApplication *wapp);
 void wApplicationExtractDirPackIcon(const char *path, const char *wm_instance,
diff --git a/src/dock.c b/src/dock.c
index 99c137a..fce3f5b 100644
--- a/src/dock.c
+++ b/src/dock.c
@@ -583,7 +583,7 @@ static void keepIconsCallback(WMenu *menu, WMenuEntry *entry)
 				wAppIconPaint(aicon);
 			}
 		}
-		save_appicon(aicon, True);
+		save_appicon(aicon);
 	}
 	WMFreeArray(selectedIcons);
 }
@@ -1445,7 +1445,7 @@ static void dockIconPaint(WAppIcon *btn)
 		wDrawerIconPaint(btn);
 	} else {
 		wAppIconPaint(btn);
-		save_appicon(btn, True);
+		save_appicon(btn);
 	}
 }
 
@@ -2219,7 +2219,7 @@ Bool wDockAttachIcon(WDock *dock, WAppIcon *icon, int x, int y, Bool update_icon
 	wAppIconPaint(icon);
 
 	/* Save it */
-	save_appicon(icon, True);
+	save_appicon(icon);
 
 	if (wPreferences.auto_arrange_icons)
 		wArrangeIcons(dock->screen_ptr, True);
@@ -2344,7 +2344,7 @@ Bool wDockMoveIconBetweenDocks(WDock *src, WDock *dest, WAppIcon *icon, int x, i
 			icon->icon->shadowed = 0;
 			update_icon = True;
 		}
-		save_appicon(icon, True);
+		save_appicon(icon);
 	}
 
 	if (src->auto_collapse || src->auto_raise_lower)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmaker.git



More information about the Pkg-wmaker-commits mailing list