summaryrefslogtreecommitdiffstats
path: root/src/note.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/note.h')
-rw-r--r--src/note.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/note.h b/src/note.h
index 736a7e8..47ffd20 100644
--- a/src/note.h
+++ b/src/note.h
@@ -88,7 +88,7 @@ class Note
TQRect rect();
TQRect resizerRect();
TQRect visibleRect();
- void retqlayoutAt(int x, int y, bool animate);
+ void relayoutAt(int x, int y, bool animate);
int contentX();
int minWidth();
int minRight();
@@ -118,7 +118,7 @@ class Note
inline bool isGroup() { return m_content == 0L; }
inline bool isFolded() { return m_isFolded; }
inline Note* firstChild() { return m_firstChild; }
- inline Note* tqparentNote() { return m_parentNote; }
+ inline Note* parentNote() { return m_parentNote; }
/*inline*/ bool showSubNotes();// { return !m_isFolded || !m_collapseFinished; }
inline void setParentNote(Note *note) { m_parentNote = note; }
inline void setFirstChild(Note *note) { m_firstChild = note; }
@@ -315,7 +315,7 @@ class Note
Note* nextShownInStack();
Note* prevShownInStack();
- Note* tqparentPrimaryNote(); // TODO: There are places in the code where this methods is hand-copied / hand-inlined instead of called.
+ Note* parentPrimaryNote(); // TODO: There are places in the code where this methods is hand-copied / hand-inlined instead of called.
Note* firstSelected();
Note* lastSelected();