diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-17 14:10:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-17 14:10:45 +0300 |
commit | ce6110221f43e5b8cd24ba954de17d00ac84fc9d (patch) | |
tree | f486d1749c879dc9a99add1df9617c8f3f0cb453 /src/gui/popupmanager.cpp | |
parent | dbf6fd812e5eff87a8fc38c4f5635845493885b1 (diff) | |
download | plus-ce6110221f43e5b8cd24ba954de17d00ac84fc9d.tar.gz plus-ce6110221f43e5b8cd24ba954de17d00ac84fc9d.tar.bz2 plus-ce6110221f43e5b8cd24ba954de17d00ac84fc9d.tar.xz plus-ce6110221f43e5b8cd24ba954de17d00ac84fc9d.zip |
Remove proxy methods used for access text popup.
Diffstat (limited to 'src/gui/popupmanager.cpp')
-rw-r--r-- | src/gui/popupmanager.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gui/popupmanager.cpp b/src/gui/popupmanager.cpp index 148689c7b..4c18af585 100644 --- a/src/gui/popupmanager.cpp +++ b/src/gui/popupmanager.cpp @@ -79,13 +79,6 @@ void PopupManager::clearPopup() popupMenu->clear(); } -void PopupManager::showTextPopup(const int x, const int y, - const std::string &text) -{ - if (textPopup) - textPopup->show(x, y, text); -} - bool PopupManager::isTextPopupVisible() const { return textPopup ? textPopup->isPopupVisible() : false; |