summaryrefslogtreecommitdiff
path: root/src/frontend/displaywindow/btwindowmodulechooser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/displaywindow/btwindowmodulechooser.h')
-rw-r--r--src/frontend/displaywindow/btwindowmodulechooser.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/frontend/displaywindow/btwindowmodulechooser.h b/src/frontend/displaywindow/btwindowmodulechooser.h
index c30c284..1cf3fd1 100644
--- a/src/frontend/displaywindow/btwindowmodulechooser.h
+++ b/src/frontend/displaywindow/btwindowmodulechooser.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.
*
**********/
@@ -35,20 +35,20 @@ class CDisplayWindow;
*/
class BtWindowModuleChooser {
public:
- BtWindowModuleChooser ( CDisplayWindow* parentWindow, CSwordModuleInfo::ModuleType moduleType )
- : m_window ( parentWindow ), m_moduleType ( moduleType ) {}
+ BtWindowModuleChooser(CSwordModuleInfo::ModuleType moduleType,
+ CDisplayWindow *parentWindow)
+ : m_window(parentWindow), m_moduleType (moduleType) {}
virtual ~BtWindowModuleChooser() {}
- protected:
/**
* The backend module list was updated, module list and widgets must be updated.
* This expects that the window module list has already been updated, so
* the corresponding slot should be connected to the window, not to the backend.
*/
- virtual void backendModulesChanged() = 0;
+ virtual void slotBackendModulesChanged() = 0;
/** Modules have been added, replaced or removed in the window without backend changing.*/
- virtual void windowModulesChanged() = 0;
+ virtual void slotWindowModulesChanged() = 0;
protected: