diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-02-26 11:15:35 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-02-26 11:15:35 +0100 |
commit | 4e85d0dd90b7e069ce04c46bf4106ae8e2f5a77e (patch) | |
tree | 642b763afcc1d9ad35875bb27dfe1688580a079a /tdespell2 | |
parent | 76e2727dc97b913a1dead96e862fd1958b39bc8d (diff) | |
download | tdelibs-4e85d0dd90b7e069ce04c46bf4106ae8e2f5a77e.tar.gz tdelibs-4e85d0dd90b7e069ce04c46bf4106ae8e2f5a77e.zip |
Fix unintended rename of m_askfilename
Diffstat (limited to 'tdespell2')
-rw-r--r-- | tdespell2/plugins/ispell/ispell_checker.cpp | 2 | ||||
-rw-r--r-- | tdespell2/plugins/ispell/ispell_checker.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tdespell2/plugins/ispell/ispell_checker.cpp b/tdespell2/plugins/ispell/ispell_checker.cpp index 2bcf7ec92..c07d9a55f 100644 --- a/tdespell2/plugins/ispell/ispell_checker.cpp +++ b/tdespell2/plugins/ispell/ispell_checker.cpp @@ -197,7 +197,7 @@ ISpellChecker::ISpellChecker() m_chartypes(NULL), m_infile(NULL), m_outfile(NULL), - m_astdefilename(NULL), + m_askfilename(NULL), m_Trynum(0), m_translate_in(0) { diff --git a/tdespell2/plugins/ispell/ispell_checker.h b/tdespell2/plugins/ispell/ispell_checker.h index b9d02c177..84faa34f9 100644 --- a/tdespell2/plugins/ispell/ispell_checker.h +++ b/tdespell2/plugins/ispell/ispell_checker.h @@ -245,7 +245,7 @@ private: FILE * m_infile; /* File being corrected */ FILE * m_outfile; /* Corrected copy of infile */ - char * m_astdefilename; /* File specified in -f option */ + char * m_askfilename; /* File specified in -f option */ int m_changes; /* NZ if changes made to cur. file */ int m_readonly; /* NZ if current file is readonly */ |