1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 04:20:27 +01:00

WPrefs: Removed unused argument to function 'OpenExtractPanelFor'

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
Christophe CURIS
2013-11-01 16:07:03 +01:00
committed by Carlos R. Mafra
parent 21dfd29b1b
commit 34da09a0a3

View File

@@ -133,7 +133,7 @@ static void changePage(WMWidget * w, void *data);
static void changeColorPage(WMWidget * w, void *data); static void changeColorPage(WMWidget * w, void *data);
static void OpenExtractPanelFor(_Panel * panel, const char *path); static void OpenExtractPanelFor(_Panel *panel);
static void changedTabItem(struct WMTabViewDelegate *self, WMTabView * tabView, WMTabViewItem * item); static void changedTabItem(struct WMTabViewDelegate *self, WMTabView * tabView, WMTabViewItem * item);
@@ -1060,7 +1060,7 @@ static void extractTexture(WMWidget * w, void *data)
if (WMRunModalFilePanelForDirectory(opanel, panel->parent, wgethomedir(), _("Select File"), NULL)) { if (WMRunModalFilePanelForDirectory(opanel, panel->parent, wgethomedir(), _("Select File"), NULL)) {
path = WMGetFilePanelFileName(opanel); path = WMGetFilePanelFileName(opanel);
OpenExtractPanelFor(panel, path); OpenExtractPanelFor(panel);
wfree(path); wfree(path);
} }
@@ -2093,7 +2093,7 @@ typedef struct ExtractPanel {
WMButton *extrB; WMButton *extrB;
} ExtractPanel; } ExtractPanel;
static void OpenExtractPanelFor(_Panel * panel, const char *path) static void OpenExtractPanelFor(_Panel *panel)
{ {
ExtractPanel *epanel; ExtractPanel *epanel;
WMColor *color; WMColor *color;