diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Makefile.am | 8 | ||||
-rw-r--r-- | plugins/hextray/utility.cpp | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 9ca89e34..8d9e09b0 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -17,9 +17,9 @@ if DO_TCL tcldir = tcl endif -if DO_SASL -sasldir = sasl -endif +#if DO_SASL +#sasldir = sasl +#endif if DO_DOAT doatdir = doat @@ -38,4 +38,4 @@ sysinfodir = sysinfo endif #SUBDIRS = . $(pythondir) $(perldir) mailcheck xdcc -SUBDIRS = . $(pythondir) $(perldir) $(tcldir) $(sasldir) $(doatdir) $(fishlimdir) $(checksumdir) $(sysinfodir) +SUBDIRS = . $(pythondir) $(perldir) $(tcldir) $(doatdir) $(fishlimdir) $(checksumdir) $(sysinfodir) diff --git a/plugins/hextray/utility.cpp b/plugins/hextray/utility.cpp index 4a2ddde7..6e552238 100644 --- a/plugins/hextray/utility.cpp +++ b/plugins/hextray/utility.cpp @@ -27,7 +27,7 @@ #include "callbacks.h" #include "resource.h" -TCHAR BACKUP_INI_FILE[] = _T(".\\plugins\\config\\xtray.conf"); +TCHAR BACKUP_INI_FILE[] = _T(".\\plugins\\config\\hextray.conf"); struct HOTKEY g_hHotKey; /* we need to convert ALT and SHIFT modifiers @@ -92,7 +92,7 @@ void SavePrefs(int iDlg) char temp[1024]; TCHAR TEMP_INI_FILE[1024]; - _snprintf(temp, 1024, "%s\\xtray.conf", xchat_get_info(ph, "xchatdir")); + _snprintf(temp, 1024, "%s\\hextray.conf", xchat_get_info(ph, "xchatdir")); ConvertString(temp, TEMP_INI_FILE, 1024); // ok this one is really ugly @@ -185,7 +185,7 @@ void LoadPrefs() char temp[1024]; TCHAR TEMP_INI_FILE[1024]; - _snprintf(temp, 1024, "%s\\xtray.conf", xchat_get_info(ph, "xchatdir")); + _snprintf(temp, 1024, "%s\\hextray.conf", xchat_get_info(ph, "xchatdir")); ConvertString(temp, TEMP_INI_FILE, 1024); if(FileExists(TEMP_INI_FILE)) |