diff options
author | Samuel Lidén Borell <samuel@kodafritt.se> | 2014-06-02 18:36:16 +0000 |
---|---|---|
committer | Berke Viktor <github.bviktor@outlook.com> | 2014-06-02 23:51:58 +0200 |
commit | d59acc2789e44733831d3bbb2e73a2dbb1f845f8 (patch) | |
tree | b7791e918fe906807e5f8ccc6d1e91814c942a84 | |
parent | 33b01b720c2849a3427c053e8d2f33ea858d622b (diff) |
Use path to HexChat instead of XChat in the test program
Note that this affects the test program only. It doesn't affect users of FiSHLiM. The reason for this change is that XChat doesn't seem to be maintained any longer.
-rw-r--r-- | plugins/fishlim/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/fishlim/test.c b/plugins/fishlim/test.c index e0abce1d..b4dc8d91 100644 --- a/plugins/fishlim/test.c +++ b/plugins/fishlim/test.c @@ -31,7 +31,7 @@ // We can't use the HexChat plugin API from here... gchar *get_config_filename() { const gchar *homedir = g_get_home_dir(); - return g_build_filename(homedir, ".xchat2", "blow.ini", NULL); + return g_build_filename(homedir, ".config", "hexchat", "blow.ini", NULL); } |