Hi Ian,
I fixed a typo on squeak.sh script. It affects those who use squeak.sh in KDE on
Linux. .. Subbu
===================================================================
--- platforms/unix/cmake/squeak.sh.in (revision 2146)
+++ platforms/unix/cmake/squeak.sh.in (working copy)
@@ -15,7 +15,7 @@
# find a way to display dialogues
-if test -n "$DISPLAY" -a -x "`which xkdialog 2>/dev/null`"; then
+if test -n "$DISPLAY" -a -x "`which kdialog 2>/dev/null`"; then
error () { kdialog --error "${me}: $*"; exit 1; }
confirm () { if kdialog --yesno "${1} ${2}?"; then result="${2}";
else result=""; fi; }
chooseItem () { title="$1"; shift; result=`kdialog --combobox
"${title}" $*`; }