diff --git a/src/plugins/help/centralwidget.cpp b/src/plugins/help/centralwidget.cpp index 32cecdac7072d638b5cb87be3357bf62b8d8e26e..eedc7f365515baa0c530072de447dba7e39c5019 100644 --- a/src/plugins/help/centralwidget.cpp +++ b/src/plugins/help/centralwidget.cpp @@ -300,13 +300,6 @@ QString CentralWidget::currentTitle() const return QString(); } -void CentralWidget::copySelection() -{ - HelpViewer* viewer = currentHelpViewer(); - if (viewer) - viewer->copy(); -} - void CentralWidget::initPrinter() { #ifndef QT_NO_PRINTER @@ -370,11 +363,6 @@ void CentralWidget::pageSetup() #endif } -bool CentralWidget::isHomeAvailable() const -{ - return currentHelpViewer() ? true : false; -} - void CentralWidget::home() { HelpViewer* viewer = currentHelpViewer(); diff --git a/src/plugins/help/centralwidget.h b/src/plugins/help/centralwidget.h index dce556a5c1a28e6c5a87a01d0b041e8f2c6413ba..271d8d9616866afcbba1e484683a2b3bbafb8dba 100644 --- a/src/plugins/help/centralwidget.h +++ b/src/plugins/help/centralwidget.h @@ -66,7 +66,6 @@ public: bool hasSelection() const; QUrl currentSource() const; QString currentTitle() const; - bool isHomeAvailable() const; bool isForwardAvailable() const; bool isBackwardAvailable() const; QList<QAction*> globalActions() const; @@ -86,7 +85,6 @@ public slots: void nextPage(); void resetZoom(); void previousPage(); - void copySelection(); void print(); void pageSetup(); void printPreview();