diff options
Diffstat (limited to 'src/renamedialog.h')
| -rw-r--r-- | src/renamedialog.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/renamedialog.h b/src/renamedialog.h index 220b8b803..cc2cb5407 100644 --- a/src/renamedialog.h +++ b/src/renamedialog.h @@ -62,12 +62,18 @@ public: * been deleted by the user, although more then one item should be * renamed). */ - const QString& newName() const { return m_newName; } + const QString& newName() const + { + return m_newName; + } /** * Returns the error string, if Dialog::newName() returned an empty string. */ - const QString& errorString() const { return m_errorString; } + const QString& errorString() const + { + return m_errorString; + } protected slots: virtual void slotButtonClicked(int button); |
