summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--plugins/hextray/utility.cpp4
-rw-r--r--plugins/perl/perl.c2
-rw-r--r--plugins/python/python.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/hextray/utility.cpp b/plugins/hextray/utility.cpp
index 66489bc0..ccf78f4e 100644
--- a/plugins/hextray/utility.cpp
+++ b/plugins/hextray/utility.cpp
@@ -97,9 +97,9 @@ void SavePrefs(int iDlg)
 

 	// ok this one is really ugly

 	// it checks to see if the file exists in two locations

-	// X-Chat default config dir, if that fails it trys xchat\plugins\config

+	// HexChat default config dir, if that fails it tries xchat\plugins\config

 	// if neither one exists it tries to create it in

-	// X-Chat default config dir, if that fails it trys xchat\plugins\config

+	// HexChat default config dir, if that fails it tries xchat\plugins\config

 	// In either case it writes \xFF\xFE to the file ( on creation )

 	// so that we can save unicode away messages WritePrivateProfile doesn't 

 	// do this for us, though I think it really should

diff --git a/plugins/perl/perl.c b/plugins/perl/perl.c
index ac231867..1250e766 100644
--- a/plugins/perl/perl.c
+++ b/plugins/perl/perl.c
@@ -144,7 +144,7 @@ perl_auto_load (void *unused)
 	if (!xdir)			/* xchatdirfs is new for 2.0.9, will fail on older */
 		xdir = xchat_get_info (ph, "xchatdir");
 
-	/* autoload from ~/.xchat2/ or ${APPDATA}\X-Chat 2\ on win32 */
+	/* autoload from ~/.xchat2/ or ${APPDATA}\HexChat\ on win32 */
 	perl_auto_load_from_path (xdir);
 
 	sub_dir = malloc (strlen (xdir) + 9);
diff --git a/plugins/python/python.c b/plugins/python/python.c
index d1cdb1c8..3824fd37 100644
--- a/plugins/python/python.c
+++ b/plugins/python/python.c
@@ -389,7 +389,7 @@ Util_Autoload()
 	char *sub_dir;
 	/* we need local filesystem encoding for chdir, opendir etc */
 
-	/* auto-load from ~/.xchat2/ or %APPDATA%\X-Chat 2\ */
+	/* auto-load from ~/.xchat2/ or %APPDATA%\HexChat\ */
 	xdir = xchat_get_info(ph, "xchatdirfs");
 	Util_Autoload_from(xchat_get_info(ph, "xchatdirfs"));