3a594413c7
ickle is an ICQ2000 Client using the GTK+ graphical toolkit. It aims to bring all the useful features of ICQ2000 to non-windows users, such as SMS messaging. Contributed by blef@users.sourceforge.net via pkgsrc-wip.
21 lines
720 B
Text
21 lines
720 B
Text
$NetBSD: patch-ac,v 1.1.1.1 2003/04/30 00:00:19 hubertf Exp $
|
|
--- ickle/SettingsDialog.cpp.orig Fri Apr 11 21:46:32 2003
|
|
+++ ickle/SettingsDialog.cpp Fri Apr 11 21:47:03 2003
|
|
@@ -216,7 +216,7 @@
|
|
// Icons in share/ickle/icons directory
|
|
Dir dir;
|
|
dir.setDirectoriesOnly(true);
|
|
- dir.list( ICONS_DIR + "*" );
|
|
+ dir.list( ICONS_DIR + "/" + "*" );
|
|
Dir::iterator iter = dir.begin();
|
|
|
|
while (iter != dir.end()) {
|
|
@@ -1060,7 +1060,7 @@
|
|
|
|
string SettingsDialog::getIconsFilename() {
|
|
string filename = icons_combo.get_entry()->get_text();
|
|
- if (filename != "Default") filename = ICONS_DIR + filename + "/";
|
|
+ if (filename != "Default") filename = ICONS_DIR + "/" + filename + "/";
|
|
return filename;
|
|
}
|
|
|