summaryrefslogtreecommitdiff
path: root/src/application.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-05-27 22:58:44 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-05-27 23:34:32 +0200
commit807e20570cbfef6e258313565598905564f1bb86 (patch)
tree695b3c940bce02305224e5781a7c48b5a6fdab94 /src/application.cpp
parentRuntime Nepomuk tagging check (diff)
downloadrekonq-807e20570cbfef6e258313565598905564f1bb86.tar.xz
Kitchen sink clean up
- astyle - copyrights - (some) includes
Diffstat (limited to 'src/application.cpp')
-rw-r--r--src/application.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/application.cpp b/src/application.cpp
index 9f99abb8..c36aeeb8 100644
--- a/src/application.cpp
+++ b/src/application.cpp
@@ -333,8 +333,8 @@ int Application::newInstance()
historyManager();
// bookmarks loading
- connect(bookmarkManager(), SIGNAL(openUrl(KUrl,Rekonq::OpenType)),
- instance(), SLOT(loadUrl(KUrl,Rekonq::OpenType)));
+ connect(bookmarkManager(), SIGNAL(openUrl(KUrl, Rekonq::OpenType)),
+ instance(), SLOT(loadUrl(KUrl, Rekonq::OpenType)));
ReKonfig::setRecoverOnCrash(ReKonfig::recoverOnCrash() + 1);
saveConfiguration();
@@ -478,7 +478,7 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type)
MainWindow *w = 0;
if (newType == Rekonq::NewWindow
- || (newType == Rekonq::NewTab && ReKonfig::openLinksInNewWindow()))
+ || (newType == Rekonq::NewTab && ReKonfig::openLinksInNewWindow()))
{
w = newMainWindow();
newType = Rekonq::CurrentTab;
@@ -806,7 +806,7 @@ void Application::createWebAppShortcut()
dialog->setCaption(i18nc("@title:window", "Create Application Shortcut"));
dialog->setButtons(KDialog::Ok | KDialog::Cancel);
dialog->button(KDialog::Ok)->setText(i18n("Create"));
- dialog->setMinimumSize(400,50);
+ dialog->setMinimumSize(400, 50);
Ui::webAppCreation wAppWidget;
QWidget widget;
@@ -853,7 +853,7 @@ void Application::createWebAppShortcut()
out.setCodec("UTF-8");
out << shortcutString;
- wAppFile.setPermissions(QFile::ReadUser|QFile::WriteUser|QFile::ExeUser|QFile::ReadGroup|QFile::ReadOther);
+ wAppFile.setPermissions(QFile::ReadUser | QFile::WriteUser | QFile::ExeUser | QFile::ReadGroup | QFile::ReadOther);
wAppFile.close();
}