summaryrefslogtreecommitdiff
blob: 1dac6c11ec5f9ba5a94da26a2e84a53c0f7bdfd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From 87b36fd87d8ecc894850d82eed33f48d6c429cad Mon Sep 17 00:00:00 2001
From: Pacho Ramos <pacho@gentoo.org>
Date: Sun, 3 Sep 2017 11:05:42 +0200
Subject: [PATCH] Fix hunspell 1.5 support

---
 providers/enchant_hunspell.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/providers/enchant_hunspell.cpp b/providers/enchant_hunspell.cpp
index 609f856..0bc360f 100644
--- a/providers/enchant_hunspell.cpp
+++ b/providers/enchant_hunspell.cpp
@@ -312,7 +312,7 @@ HunspellChecker::requestDictionary(const char *szLang)
 	if(hunspell == NULL){
 		return false;
 	}
-	char *enc = hunspell->get_dic_encoding();
+	const char *enc = hunspell->get_dic_encoding();
 
 	m_translate_in = g_iconv_open(enc, "UTF-8");
 	m_translate_out = g_iconv_open("UTF-8", enc);
-- 
2.14.1