From 970df50e4813b7e4bd0a7426f7a7f6c25c6b79ec Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Thu, 6 Jan 2005 20:01:41 +0000 Subject: Removed useless 'const' in return value of some functions. --- src/text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/text.cpp') diff --git a/src/text.cpp b/src/text.cpp index 4b520a43..5995daf1 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -214,7 +214,7 @@ word* text::getWordAt(const int pos) } -const word* const text::getWordAt(const int pos) const +const word* text::getWordAt(const int pos) const { return (m_words[pos]); } -- cgit v1.2.3