all repos — tint2 @ cf12f631987f9be8d1df85e747da5da3de1ca117

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

*fix* warning
*fix* tint2conf installation directories 


git-svn-id: http://tint2.googlecode.com/svn/trunk@604 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
Andreas.Fink85 Andreas.Fink85@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

cf12f631987f9be8d1df85e747da5da3de1ca117

parent

2ab0d33ae5cb28b4c36f181a3bdab63beea00780

3 files changed, 4 insertions(+), 4 deletions(-)

jump to
M src/tint.csrc/tint.c

@@ -923,7 +923,7 @@ remove_icon((TrayWindow*)it->data);

break; } } - break; + break; case ClientMessage: ev = &e.xclient;
M src/tint2conf/CMakeLists.txtsrc/tint2conf/CMakeLists.txt

@@ -45,6 +45,6 @@ set_target_properties( tint2conf PROPERTIES LINK_FLAGS "-pthread" )

install( TARGETS tint2conf DESTINATION bin ) install( PROGRAMS tintwizard.py DESTINATION bin ) -install( FILES taskbar.svg DESTINATION share/icons/hicolor/scalable/apps ) -install( FILES tint2conf.desktop DESTINATION share/applications ) +install( FILES taskbar.svg DESTINATION ${DATADIR}/icons/hicolor/scalable/apps ) +install( FILES tint2conf.desktop DESTINATION ${DATADIR}/applications ) install( CODE "execute_process(COMMAND gtk-update-icon-cache -f -t ${DATADIR}/icons/hicolor WORKING_DIRECTORY ${CMAKE_INSTALL_PREFIX})" )
M src/util/timer.csrc/util/timer.c

@@ -398,7 +398,7 @@ t->multi_timeout = 0;

if (g_slist_length(mth->timeout_list) == 1) { timeout* last_timeout = mth->timeout_list->data; - g_slist_remove(mth->timeout_list, last_timeout); + mth->timeout_list = g_slist_remove(mth->timeout_list, last_timeout); free(last_timeout->multi_timeout); last_timeout->multi_timeout = 0; g_hash_table_remove(multi_timeouts, last_timeout);