summaryrefslogtreecommitdiff
path: root/src/backend/rendering/cchapterdisplay.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/rendering/cchapterdisplay.h')
-rw-r--r--src/backend/rendering/cchapterdisplay.h29
1 files changed, 15 insertions, 14 deletions
diff --git a/src/backend/rendering/cchapterdisplay.h b/src/backend/rendering/cchapterdisplay.h
index 3b3d363..a13ebc3 100644
--- a/src/backend/rendering/cchapterdisplay.h
+++ b/src/backend/rendering/cchapterdisplay.h
@@ -2,7 +2,7 @@
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
-* Copyright 1999-2008 by the BibleTime developers.
+* Copyright 1999-2011 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
@@ -15,24 +15,25 @@
namespace Rendering {
-/** Chapter rendering.
-* A CEntryDisplay implementation mde for Bibles to display whole chapters
-* at once.
-* @author The BibleTime team
-*/
-
-class CChapterDisplay : public CEntryDisplay {
+/**
+ \brief CEntryDisplay implementation for whole chapters.
- public: // Public methods
- virtual ~CChapterDisplay() {}
+ A CEntryDisplay implementation made for Bibles to display whole chapters at
+ once.
+*/
+class CChapterDisplay: public CEntryDisplay {
+ public: /* Methods: */
+ virtual inline ~CChapterDisplay() {}
/**
- * Returns the rendered text using the modules in the list and using the key parameter.
- * The displayoptions and filter options are used, too.
+ Reimplemented from CEntryDisplay.
*/
- virtual const QString text( const QList<CSwordModuleInfo*>& modules, const QString& key, const CSwordBackend::DisplayOptions displayOptions, const CSwordBackend::FilterOptions filterOptions);
+ virtual const QString text(const QList<const CSwordModuleInfo*> &modules,
+ const QString &key,
+ const DisplayOptions &displayOptions,
+ const FilterOptions &filterOptions);
};
-}
+} // namespace Rendering
#endif