Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
KInfoCenter
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Plasma
KInfoCenter
Commits
03e68d4f
Commit
03e68d4f
authored
Oct 21, 2017
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ise nullptr
parent
81934884
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
9 deletions
+9
-9
Modules/info/info.h
Modules/info/info.h
+1
-1
Modules/memory/chartWidget.h
Modules/memory/chartWidget.h
+2
-2
Modules/memory/memory.h
Modules/memory/memory.h
+1
-1
Modules/memory/physicalMemoryChart.h
Modules/memory/physicalMemoryChart.h
+1
-1
Modules/memory/swapMemoryChart.h
Modules/memory/swapMemoryChart.h
+1
-1
Modules/memory/totalMemoryChart.h
Modules/memory/totalMemoryChart.h
+1
-1
Modules/pci/kcm_pci.h
Modules/pci/kcm_pci.h
+1
-1
Modules/usbview/kcmusb.h
Modules/usbview/kcmusb.h
+1
-1
No files found.
Modules/info/info.h
View file @
03e68d4f
...
...
@@ -36,7 +36,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
class
KInfoListWidget
:
public
KCModule
{
public:
KInfoListWidget
(
const
QString
&
_title
,
QWidget
*
parent
,
bool
_getlistbox
(
QTreeWidget
*
)
=
NULL
);
KInfoListWidget
(
const
QString
&
_title
,
QWidget
*
parent
,
bool
_getlistbox
(
QTreeWidget
*
)
=
nullptr
);
void
load
()
Q_DECL_OVERRIDE
;
QString
quickHelp
()
const
Q_DECL_OVERRIDE
;
...
...
Modules/memory/chartWidget.h
View file @
03e68d4f
...
...
@@ -34,7 +34,7 @@ class QWidget;
class
Chart
:
public
QWidget
{
public:
Chart
(
QWidget
*
parent
=
NULL
);
Chart
(
QWidget
*
parent
=
nullptr
);
void
setMemoryInfos
(
t_memsize
*
memoryInfos
);
void
setFreeMemoryLabel
(
QLabel
*
freeMemoryLabel
);
...
...
@@ -57,7 +57,7 @@ public:
/**
* Initialize the list view item and task.
*/
ChartWidget
(
const
QString
&
title
,
const
QString
&
hint
,
Chart
*
chartImplementation
,
QWidget
*
parent
=
NULL
);
ChartWidget
(
const
QString
&
title
,
const
QString
&
hint
,
Chart
*
chartImplementation
,
QWidget
*
parent
=
nullptr
);
void
setMemoryInfos
(
t_memsize
*
memoryInfos
);
void
refresh
();
...
...
Modules/memory/memory.h
View file @
03e68d4f
...
...
@@ -39,7 +39,7 @@ class KCMMemory : public KCModule {
Q_OBJECT
public:
explicit
KCMMemory
(
QWidget
*
parent
=
NULL
,
const
QVariantList
&
list
=
QVariantList
());
explicit
KCMMemory
(
QWidget
*
parent
=
nullptr
,
const
QVariantList
&
list
=
QVariantList
());
~
KCMMemory
();
QString
quickHelp
()
const
Q_DECL_OVERRIDE
;
...
...
Modules/memory/physicalMemoryChart.h
View file @
03e68d4f
...
...
@@ -35,7 +35,7 @@ public:
/**
* Initialize the list view item and task.
*/
PhysicalMemoryChart
(
QWidget
*
parent
=
NULL
);
PhysicalMemoryChart
(
QWidget
*
parent
=
nullptr
);
protected:
...
...
Modules/memory/swapMemoryChart.h
View file @
03e68d4f
...
...
@@ -35,7 +35,7 @@ public:
/**
* Initialize the list view item and task.
*/
SwapMemoryChart
(
QWidget
*
parent
=
NULL
);
SwapMemoryChart
(
QWidget
*
parent
=
nullptr
);
protected:
...
...
Modules/memory/totalMemoryChart.h
View file @
03e68d4f
...
...
@@ -35,7 +35,7 @@ public:
/**
* Initialize the list view item and task.
*/
TotalMemoryChart
(
QWidget
*
parent
=
NULL
);
TotalMemoryChart
(
QWidget
*
parent
=
nullptr
);
protected:
...
...
Modules/pci/kcm_pci.h
View file @
03e68d4f
...
...
@@ -31,7 +31,7 @@ class KCMPci : public KCModule {
Q_OBJECT
public:
explicit
KCMPci
(
QWidget
*
parent
=
NULL
,
const
QVariantList
&
list
=
QVariantList
());
explicit
KCMPci
(
QWidget
*
parent
=
nullptr
,
const
QVariantList
&
list
=
QVariantList
());
~
KCMPci
();
void
load
()
Q_DECL_OVERRIDE
;
...
...
Modules/usbview/kcmusb.h
View file @
03e68d4f
...
...
@@ -24,7 +24,7 @@ Q_OBJECT
public:
explicit
USBViewer
(
QWidget
*
parent
=
0L
,
const
QVariantList
&
list
=
QVariantList
());
explicit
USBViewer
(
QWidget
*
parent
=
nullptr
,
const
QVariantList
&
list
=
QVariantList
());
void
load
()
Q_DECL_OVERRIDE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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