diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-02-19 19:27:14 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-02-19 19:27:14 +0100 |
commit | d61f92abb1903726821d1110417da35763e356a5 (patch) | |
tree | 38b166f8739acfb9dbb7ab7c1ffbebee75f4fda7 | |
parent | 1ec859e879d5b0842b07360964ac14a809fdb825 (diff) | |
download | tdesvn-d61f92abb1903726821d1110417da35763e356a5.tar.gz tdesvn-d61f92abb1903726821d1110417da35763e356a5.zip |
Fix unintended rename of bookmark*, mark*
-rw-r--r-- | src/tdesvn.cpp | 8 | ||||
-rw-r--r-- | src/tdesvn.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/tdesvn.cpp b/src/tdesvn.cpp index 4de0574..ac08597 100644 --- a/src/tdesvn.cpp +++ b/src/tdesvn.cpp @@ -91,11 +91,11 @@ tdesvn::tdesvn() m_BookmarksActionmenu->setDelayed(false); m_BookmarksActionmenu->setEnabled(true); - m_Bookmartdeactions = new TDEActionCollection( this ); - m_Bookmartdeactions->setHighlightingEnabled( true ); - connectActionCollection( m_Bookmartdeactions ); + m_Bookmarkactions = new TDEActionCollection( this ); + m_Bookmarkactions->setHighlightingEnabled( true ); + connectActionCollection( m_Bookmarkactions ); - m_pBookmarkMenu = new KBookmarkMenu(m_BookmarkManager,this,m_BookmarksActionmenu->popupMenu(),m_Bookmartdeactions,true); + m_pBookmarkMenu = new KBookmarkMenu(m_BookmarkManager,this,m_BookmarksActionmenu->popupMenu(),m_Bookmarkactions,true); // m_BookmarksActionmenu->plug(menuBar()); // this routine will find and load our Part. it finds the Part by // name which is a bad idea usually.. but it's alright in this diff --git a/src/tdesvn.h b/src/tdesvn.h index df76814..6c00331 100644 --- a/src/tdesvn.h +++ b/src/tdesvn.h @@ -102,7 +102,7 @@ private: TQString m_bookmarkFile; KBookmarkManager * m_BookmarkManager; TDEActionMenu* m_BookmarksActionmenu; - TDEActionCollection*m_Bookmartdeactions; + TDEActionCollection*m_Bookmarkactions; KBookmarkMenu * m_pBookmarkMenu; KParts::ReadOnlyPart *m_part; TDEToggleAction *m_statusbarAction; |