summaryrefslogtreecommitdiffstats
path: root/src/controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/controller.h')
-rw-r--r--src/controller.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/controller.h b/src/controller.h
index 462d0bb..d928dde 100644
--- a/src/controller.h
+++ b/src/controller.h
@@ -44,8 +44,8 @@ public:
/**
* Initializes the singleton. Should just be called once, from Tellico::MainWindow
*/
- static void init(MainWindow* tqparent, const char* name=0) {
- if(!s_self) s_self = new Controller(tqparent, name);
+ static void init(MainWindow* parent, const char* name=0) {
+ if(!s_self) s_self = new Controller(parent, name);
}
const Data::EntryVec& selectedEntries() const { return m_selectedEntries; }
@@ -108,7 +108,7 @@ public:
public slots:
/**
* When a collection is added to the document, certain actions need to be taken
- * by the tqparent app. The collection toolbar is updated, the entry count is set, and
+ * by the parent app. The collection toolbar is updated, the entry count is set, and
* the collection's modified signal is connected to the @ref GroupView widget.
*
* @param coll A pointer to the collection being added
@@ -149,7 +149,7 @@ signals:
private:
static Controller* s_self;
- Controller(MainWindow* tqparent, const char* name);
+ Controller(MainWindow* parent, const char* name);
void blockAllSignals(bool block) const;
bool canCheckIn() const;