Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Education
libkeduvocdocument
Commits
1c02a136
Commit
1c02a136
authored
Aug 01, 2020
by
Laurent Montel
😁
Browse files
Port to nullptr
parent
3f6e447d
Changes
5
Hide whitespace changes
Inline
Side-by-side
keduvocdocument/keduvoccontainer.h
View file @
1c02a136
...
...
@@ -47,7 +47,7 @@ public:
/** default constructor */
explicit
KEduVocContainer
(
const
QString
&
name
,
EnumContainerType
type
,
KEduVocContainer
*
parent
=
0
);
KEduVocContainer
*
parent
=
nullptr
);
void
appendChildContainer
(
KEduVocContainer
*
child
);
void
insertChildContainer
(
int
row
,
KEduVocContainer
*
child
);
...
...
keduvocdocument/keduvocdocument.h
View file @
1c02a136
...
...
@@ -102,7 +102,7 @@ public:
*
* @param parent calling object
*/
explicit
KEduVocDocument
(
QObject
*
parent
=
0
);
explicit
KEduVocDocument
(
QObject
*
parent
=
nullptr
);
/**
* Destructor
...
...
keduvocdocument/keduvocleitnerbox.h
View file @
1c02a136
...
...
@@ -32,7 +32,7 @@ class KEDUVOCDOCUMENT_EXPORT KEduVocLeitnerBox :public KEduVocContainer
{
public:
/** default constructor */
explicit
KEduVocLeitnerBox
(
const
QString
&
name
,
KEduVocLeitnerBox
*
parent
=
0
);
explicit
KEduVocLeitnerBox
(
const
QString
&
name
,
KEduVocLeitnerBox
*
parent
=
nullptr
);
/** destructor */
~
KEduVocLeitnerBox
();
...
...
keduvocdocument/keduvoclesson.h
View file @
1c02a136
...
...
@@ -28,7 +28,7 @@ class KEDUVOCDOCUMENT_EXPORT KEduVocLesson :public KEduVocContainer
{
public:
/** default constructor */
explicit
KEduVocLesson
(
const
QString
&
name
,
KEduVocContainer
*
parent
=
0
);
explicit
KEduVocLesson
(
const
QString
&
name
,
KEduVocContainer
*
parent
=
nullptr
);
// void appendChildLesson(KEduVocLesson *child);
...
...
keduvocdocument/keduvocwordtype.h
View file @
1c02a136
...
...
@@ -36,7 +36,7 @@ public:
/** default constructor */
explicit
KEduVocWordType
(
const
QString
&
name
,
KEduVocWordType
*
parent
=
0
);
explicit
KEduVocWordType
(
const
QString
&
name
,
KEduVocWordType
*
parent
=
nullptr
);
/** destructor */
~
KEduVocWordType
();
...
...
Write
Preview
Supports
Markdown
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