summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDom Lachowicz <domlachowicz@gmail.com>2006-03-08 13:13:33 +0000
committerDom Lachowicz <domlachowicz@gmail.com>2006-03-08 13:13:33 +0000
commit83d1a6bd8fec62701b0fcea38bec0a419f4ceed0 (patch)
tree973d0f88744fad2ae8cc6b501d0b0064f7c0149d
parent3cc931bacaea0ad48e6136e7fbc57754ef98a71b (diff)
downloadenchant-83d1a6bd8fec62701b0fcea38bec0a419f4ceed0.tar.gz
bug 10101
git-svn-id: svn+ssh://svn.abisource.com/svnroot/enchant/trunk@21109 bcba8976-2d24-0410-9c9c-aab3bd5fdfd6
-rw-r--r--configure.in2
-rw-r--r--src/uspell/uspell_provider.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 1220be9..9f064fe 100644
--- a/configure.in
+++ b/configure.in
@@ -11,7 +11,7 @@ ENCHANT_MINOR_VERSION=2
dnl 3) Increment when interfaces not changed at all,
dnl only bug fixes or internal changes made.
dnl 4b) Set to zero when adding, removing or changing interfaces.
-ENCHANT_MICRO_VERSION=2
+ENCHANT_MICRO_VERSION=3
dnl
dnl Set this too
MAJOR_VERSION_PLUS_MINOR_VERSION=`expr $ENCHANT_MAJOR_VERSION + $ENCHANT_MINOR_VERSION`
diff --git a/src/uspell/uspell_provider.cpp b/src/uspell/uspell_provider.cpp
index 7164b1f..54edd66 100644
--- a/src/uspell/uspell_provider.cpp
+++ b/src/uspell/uspell_provider.cpp
@@ -63,7 +63,7 @@ uspell_checker_get_prefix (void)
char * enchant_prefix = _enchant_get_prefix_dir();
if(enchant_prefix)
{
- uspell_prefix = g_build_filename(enchant_prefix, "share", "enchant", "uspell", NULL);
+ char * uspell_prefix = g_build_filename(enchant_prefix, "share", "enchant", "uspell", NULL);
g_free(enchant_prefix);
return uspell_prefix;
}