From e960279ff26048fd7a366b86bae82ed178564127 Mon Sep 17 00:00:00 2001 From: Ariya Hidayat Date: Sun, 11 Sep 2011 02:19:20 -0700 Subject: [PATCH] Coding style: fix place bracement. --- src/phantom.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/phantom.cpp b/src/phantom.cpp index 30bd7bbd..584be2d6 100644 --- a/src/phantom.cpp +++ b/src/phantom.cpp @@ -215,7 +215,8 @@ QString Phantom::loadModuleSource(const QString &name) return moduleSource; } -bool Phantom::injectJs(const QString &jsFilePath) { +bool Phantom::injectJs(const QString &jsFilePath) +{ return Utils::injectJsInFrame(jsFilePath, libraryPath(), m_page->mainFrame()); }