diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-02-08 23:05:08 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-02-09 15:37:33 +0100 |
commit | 2da7a89cc5f53a2805519ac500b1e800b1b75b11 (patch) | |
tree | 8da58439280abbbfd473613993737f952a880ec8 /applets/wncklet/window-list.c | |
parent | 445902bc13eaf9332da9096becc81e7ec2b909df (diff) | |
download | mate-panel-2da7a89cc5f53a2805519ac500b1e800b1b75b11.tar.bz2 mate-panel-2da7a89cc5f53a2805519ac500b1e800b1b75b11.tar.xz |
GTK+3 windows-list: fix a build warning
Diffstat (limited to 'applets/wncklet/window-list.c')
-rw-r--r-- | applets/wncklet/window-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/wncklet/window-list.c b/applets/wncklet/window-list.c index e233652b..f7fa1390 100644 --- a/applets/wncklet/window-list.c +++ b/applets/wncklet/window-list.c @@ -122,7 +122,7 @@ static void applet_change_orient(MatePanelApplet* applet, MatePanelAppletOrient #ifdef WNCK_CHECK_VERSION #if WNCK_CHECK_VERSION (3, 4, 6) - wnck_tasklist_set_orientation (tasklist->tasklist, new_orient); + wnck_tasklist_set_orientation (WNCK_TASKLIST (tasklist->tasklist), new_orient); #endif #endif tasklist_update(tasklist); |