rename "text" to "title" in NotebookTab

This commit is contained in:
Rasmus Karlsson
2017-01-29 11:39:16 +01:00
parent c0b4035e6a
commit 199e87896b
2 changed files with 12 additions and 12 deletions
+5 -5
View File
@@ -30,15 +30,15 @@ public:
NotebookPage *page;
const QString &
getText() const
getTitle() const
{
return this->text;
return this->title;
}
void
setText(const QString &text)
setTitle(const QString &title)
{
this->text = text;
this->title = title;
}
bool
@@ -95,7 +95,7 @@ private:
Notebook *notebook;
QString text;
QString title;
bool selected;
bool mouseOver;