Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Integration
Commits
6e81914a
Commit
6e81914a
authored
Oct 24, 2020
by
Laurent Montel
Browse files
Use nullptr
parent
91ceaabb
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/platformtheme/kdeplatformsystemtrayicon.h
View file @
6e81914a
...
...
@@ -91,7 +91,7 @@ public:
private:
quintptr
m_tag
;
QAction
*
m_action
;
QAction
*
m_action
=
nullptr
;
};
class
KDEPlatformSystemTrayIcon
:
public
QPlatformSystemTrayIcon
...
...
src/platformtheme/kdeplatformtheme.h
View file @
6e81914a
...
...
@@ -66,8 +66,8 @@ private:
static
bool
useXdgDesktopPortal
();
KHintsSettings
*
m_hints
;
KFontSettingsData
*
m_fontsData
;
KHintsSettings
*
m_hints
=
nullptr
;
KFontSettingsData
*
m_fontsData
=
nullptr
;
QScopedPointer
<
KWaylandIntegration
>
m_kwaylandIntegration
;
QScopedPointer
<
X11Integration
>
m_x11Integration
;
...
...
src/platformtheme/qdbusmenubar_p.h
View file @
6e81914a
...
...
@@ -84,8 +84,8 @@ Q_SIGNALS:
void
windowChanged
(
QWindow
*
newWindow
,
QWindow
*
oldWindow
);
private:
QDBusPlatformMenu
*
m_menu
;
QDBusMenuAdaptor
*
m_menuAdaptor
;
QDBusPlatformMenu
*
m_menu
=
nullptr
;
QDBusMenuAdaptor
*
m_menuAdaptor
=
nullptr
;
QHash
<
quintptr
,
QDBusPlatformMenuItem
*>
m_menuItems
;
QPointer
<
QWindow
>
m_window
;
QString
m_objectPath
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment