1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 02:36:34 +01:00

Coding style.

This commit is contained in:
nowrep 2013-02-09 12:40:20 +01:00
parent 484c76eae2
commit 732c1b533f
2 changed files with 9 additions and 9 deletions

View File

@ -42,13 +42,13 @@ void MacMenuReceiver::setEnabledSelectedMenuActions(QMenu* menu, const QList<int
// we mean all actions by empty list // we mean all actions by empty list
if (indexList.isEmpty()) { if (indexList.isEmpty()) {
foreach (QAction * act, menu->actions()) { foreach(QAction * act, menu->actions()) {
act->setEnabled(true); act->setEnabled(true);
} }
return; return;
} }
foreach (int index, indexList) { foreach(int index, indexList) {
Q_ASSERT(index >= 0 && index < menu->actions().size()); Q_ASSERT(index >= 0 && index < menu->actions().size());
menu->actions().at(index)->setEnabled(true); menu->actions().at(index)->setEnabled(true);
} }
@ -62,19 +62,19 @@ void MacMenuReceiver::setDisabledSelectedMenuActions(QMenu* menu, const QList<in
// we mean all actions by empty list // we mean all actions by empty list
if (indexList.isEmpty()) { if (indexList.isEmpty()) {
foreach (QAction * act, menu->actions()) { foreach(QAction * act, menu->actions()) {
act->setDisabled(true); act->setDisabled(true);
} }
return; return;
} }
foreach (int index, indexList) { foreach(int index, indexList) {
Q_ASSERT(index >= 0 && index < menu->actions().size()); Q_ASSERT(index >= 0 && index < menu->actions().size());
menu->actions().at(index)->setDisabled(true); menu->actions().at(index)->setDisabled(true);
} }
} }
bool MacMenuReceiver::callSlot(const char *member, bool makeIfNoWindow, QGenericArgument val0, QGenericArgument val1) bool MacMenuReceiver::callSlot(const char* member, bool makeIfNoWindow, QGenericArgument val0, QGenericArgument val1)
{ {
//qDebug("MacMenuReceiver::callSlot: \'QupZilla::%s()\'", member); //qDebug("MacMenuReceiver::callSlot: \'QupZilla::%s()\'", member);
@ -408,7 +408,7 @@ void MacMenuReceiver::loadActionUrlInNewTab(QObject* obj)
} }
if (!callSlot("loadActionUrlInNewTab", false, Q_ARG(QObject*, obj))) { if (!callSlot("loadActionUrlInNewTab", false, Q_ARG(QObject*, obj))) {
callSlot("loadActionUrl", true, Q_ARG(QObject*, obj)); callSlot("loadActionUrl", true, Q_ARG(QObject*, obj));
} }
} }
@ -474,7 +474,7 @@ void MacMenuReceiver::aboutToShowViewMenu()
QMenu* menu = qobject_cast<QMenu*>(sender()); QMenu* menu = qobject_cast<QMenu*>(sender());
// 7,8,9=Zoom actions, 12=Character Encoding, 15=Fullscreen // 7,8,9=Zoom actions, 12=Character Encoding, 15=Fullscreen
setEnabledSelectedMenuActions(menu, QList<int>() setEnabledSelectedMenuActions(menu, QList<int>()
<< 0 << 1 << 2 << 7 << 8 << 9 << 11 << 12 << 15); << 0 << 1 << 2 << 7 << 8 << 9 << 11 << 12 << 15);
// for updating reload and stop actions // for updating reload and stop actions
if (mApp->getWindow()) { if (mApp->getWindow()) {
mApp->getWindow()->updateLoadingActions(); mApp->getWindow()->updateLoadingActions();

View File

@ -47,7 +47,7 @@ public:
private: private:
void setEnabledSelectedMenuActions(QMenu* menu, const QList<int> indexList = QList<int>()); void setEnabledSelectedMenuActions(QMenu* menu, const QList<int> indexList = QList<int>());
void setDisabledSelectedMenuActions(QMenu* menu, const QList<int> indexList = QList<int>()); void setDisabledSelectedMenuActions(QMenu* menu, const QList<int> indexList = QList<int>());
bool callSlot(const char *member, bool makeIfNoWindow = false, bool callSlot(const char* member, bool makeIfNoWindow = false,
QGenericArgument val0 = QGenericArgument(0), QGenericArgument val0 = QGenericArgument(0),
QGenericArgument val1 = QGenericArgument()); QGenericArgument val1 = QGenericArgument());
@ -117,7 +117,7 @@ private slots:
void zoomOut(); void zoomOut();
void zoomReset(); void zoomReset();
void fullScreen(bool make); void fullScreen(bool make);
void changeEncoding(QObject *obj = 0); void changeEncoding(QObject* obj = 0);
void triggerCaretBrowsing(); void triggerCaretBrowsing();