X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fwindows%2FBrowserWindow.cpp;fp=src%2Fwindows%2FBrowserWindow.cpp;h=33aef29f77ad309caf13e4acc3ad3d5c6b1cf30a;hp=e84f9574835bdf1ad6c04df0304e518d1ee7c9cb;hb=273588ac3f6077b62c1fb2b55b9cdc6b5e200fad;hpb=ab3422aabe802b11f4ddf32df6a2a33e1fff9c96 diff --git a/src/windows/BrowserWindow.cpp b/src/windows/BrowserWindow.cpp index e84f957..33aef29 100644 --- a/src/windows/BrowserWindow.cpp +++ b/src/windows/BrowserWindow.cpp @@ -58,6 +58,8 @@ BrowserWindow::BrowserWindow() : KXmlGuiWindow() // Add the standard actions. KStandardAction::openNew(this, SLOT(fileNew()), actionCollectionPointer); + KStandardAction::print(browserViewPointer, SLOT(print()), actionCollectionPointer); + KStandardAction::printPreview(browserViewPointer, SLOT(printPreview()), actionCollectionPointer); KStandardAction::quit(qApp, SLOT(closeAllWindows()), actionCollectionPointer); KStandardAction::redisplay(this, SLOT(refresh()), actionCollectionPointer); fullScreenActionPointer = KStandardAction::fullScreen(this, SLOT(toggleFullScreen()), this, actionCollectionPointer);