diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2005-03-31 22:54:36 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2005-03-31 22:54:36 +0000 |
commit | b645b1006d3e0b38a0ae3deb361ece3c836ae62a (patch) | |
tree | 1a2ae89f6791e74a2b3c3c8ea6d9c69f3adc7490 /kde-misc/kooldock/files | |
parent | took d.g.o out of SRC_URI (diff) | |
download | historical-b645b1006d3e0b38a0ae3deb361ece3c836ae62a.tar.gz historical-b645b1006d3e0b38a0ae3deb361ece3c836ae62a.tar.bz2 historical-b645b1006d3e0b38a0ae3deb361ece3c836ae62a.zip |
Patched to stop segfault on exit left, thanks to David Leaver <danzel@localhost.geek.nz> for the patch, marked ~amd64 closing bug 85071.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'kde-misc/kooldock/files')
-rw-r--r-- | kde-misc/kooldock/files/digest-kooldock-0.3-r1 | 1 | ||||
-rw-r--r-- | kde-misc/kooldock/files/kooldock-0.3-fix-left-segfault.patch | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/kde-misc/kooldock/files/digest-kooldock-0.3-r1 b/kde-misc/kooldock/files/digest-kooldock-0.3-r1 new file mode 100644 index 000000000000..e80b1b0fbe32 --- /dev/null +++ b/kde-misc/kooldock/files/digest-kooldock-0.3-r1 @@ -0,0 +1 @@ +MD5 a53b74ce56f65b738413205cd9bfe2ca kooldock-0.3.tar.gz 1007670 diff --git a/kde-misc/kooldock/files/kooldock-0.3-fix-left-segfault.patch b/kde-misc/kooldock/files/kooldock-0.3-fix-left-segfault.patch new file mode 100644 index 000000000000..14a6939dcddb --- /dev/null +++ b/kde-misc/kooldock/files/kooldock-0.3-fix-left-segfault.patch @@ -0,0 +1,11 @@ +--- kooldock/kooldock/kooldock.cpp 2004-08-11 19:36:00.000000000 +1200 ++++ kooldock/kooldock/kooldock.cpp 2005-03-30 14:15:49.000000000 +1200 +@@ -999,7 +999,7 @@ + else + { + // the rest of the icons +- xosdw->move(x + (cur_cx[i] - iwSmall/2 + adjust + SPACE_W) - (xosdw->w/2), dh - h - xosdw->h); ++ if ((int)i > 0) xosdw->move(x + (cur_cx[i] - iwSmall/2 + adjust + SPACE_W) - (xosdw->w/2), dh - h - xosdw->h); + } + if(xosd_st==0) + { |