[Code] Little cleanups after rename QupZilla -> BrowserWindow

remotes/origin/falkon
nowrep 12 years ago
parent 84ef3e9fda
commit 3650aac9ff
  1. 4
      src/lib/app/browserwindow.cpp
  2. 2
      src/lib/app/qz_namespace.h
  3. 6
      src/lib/autofill/autofill.h

@ -1881,7 +1881,7 @@ void BrowserWindow::resizeEvent(QResizeEvent* event)
void BrowserWindow::keyPressEvent(QKeyEvent* event)
{
if (mApp->plugins()->processKeyPress(Qz::ON_QupZilla, this, event)) {
if (mApp->plugins()->processKeyPress(Qz::ON_BrowserWindow, this, event)) {
return;
}
@ -2061,7 +2061,7 @@ void BrowserWindow::keyPressEvent(QKeyEvent* event)
void BrowserWindow::keyReleaseEvent(QKeyEvent* event)
{
if (mApp->plugins()->processKeyRelease(Qz::ON_QupZilla, this, event)) {
if (mApp->plugins()->processKeyRelease(Qz::ON_BrowserWindow, this, event)) {
return;
}

@ -90,7 +90,7 @@ enum CommandLineAction {
enum ObjectName {
ON_WebView,
ON_TabBar,
ON_QupZilla
ON_BrowserWindow
};
enum NewTabPositionFlag {

@ -15,8 +15,8 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
#ifndef AUTOFILLMODEL_H
#define AUTOFILLMODEL_H
#ifndef AUTOFILL_H
#define AUTOFILL_H
#include <QObject>
@ -72,4 +72,4 @@ private:
};
#endif // AUTOFILLMODEL_H
#endif // AUTOFILL_H

Loading…
Cancel
Save