aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/proxyaction.h
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2018-11-11 20:37:40 +0200
committerOrgad Shaneh <orgads@gmail.com>2018-11-12 06:37:50 +0000
commit0ccc1dbf8fe9bb3e8f29683a70a7f13fd3db2343 (patch)
treee1db722339b3a709502752d9ec46618f11640fa3 /src/libs/utils/proxyaction.h
parent8ab67ef24e8503ee297a4f850aa951503f1b8c90 (diff)
Remove unneeded member initializers
Change-Id: Ie68b15079d93c48c5027871743c88d9e051e3fbe Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/libs/utils/proxyaction.h')
-rw-r--r--src/libs/utils/proxyaction.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/utils/proxyaction.h b/src/libs/utils/proxyaction.h
index 6f5671cea7..900376cf1f 100644
--- a/src/libs/utils/proxyaction.h
+++ b/src/libs/utils/proxyaction.h
@@ -68,8 +68,8 @@ private:
void connectAction();
void update(QAction *action, bool initialize);
- QPointer<QAction> m_action = nullptr;
- Attributes m_attributes = {};
+ QPointer<QAction> m_action;
+ Attributes m_attributes;
bool m_showShortcut = false;
QString m_toolTip;
bool m_block = false;