mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-22 05:48:01 +01:00
wAppIconPaint argument removed
This patch removes the wAppIconPaint() Bool flag, because now it is always False.
This commit is contained in:
committed by
Carlos R. Mafra
parent
a950d0e247
commit
cc1503a2f0
@@ -215,7 +215,7 @@ void wApplicationActivate(WApplication *wapp)
|
||||
#ifdef NEWAPPICON
|
||||
if (wapp->app_icon) {
|
||||
wIconSetHighlited(wapp->app_icon->icon, True);
|
||||
wAppIconPaint(wapp->app_icon, False);
|
||||
wAppIconPaint(wapp->app_icon);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
@@ -225,7 +225,7 @@ void wApplicationDeactivate(WApplication *wapp)
|
||||
#ifdef NEWAPPICON
|
||||
if (wapp->app_icon) {
|
||||
wIconSetHighlited(wapp->app_icon->icon, False);
|
||||
wAppIconPaint(wapp->app_icon, False);
|
||||
wAppIconPaint(wapp->app_icon);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user