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
Jan Paul Batrina
Ark
Commits
391ce7fb
Commit
391ce7fb
authored
Jul 04, 2009
by
Raphael Kubo da Costa
Browse files
Make parent optional in the constructor.
svn path=/trunk/KDE/kdeutils/ark/; revision=991469
parent
fffee338
Changes
4
Hide whitespace changes
Inline
Side-by-side
plugins/libsinglefileplugin/bz2plugin.h
View file @
391ce7fb
...
...
@@ -33,7 +33,7 @@ class LibBzip2Interface : public LibSingleFileInterface
Q_OBJECT
public:
LibBzip2Interface
(
const
QString
&
filename
,
QObject
*
parent
);
LibBzip2Interface
(
const
QString
&
filename
,
QObject
*
parent
=
0
);
virtual
~
LibBzip2Interface
();
};
...
...
plugins/libsinglefileplugin/gzplugin.h
View file @
391ce7fb
...
...
@@ -33,7 +33,7 @@ class LibGzipInterface : public LibSingleFileInterface
Q_OBJECT
public:
LibGzipInterface
(
const
QString
&
filename
,
QObject
*
parent
);
LibGzipInterface
(
const
QString
&
filename
,
QObject
*
parent
=
0
);
virtual
~
LibGzipInterface
();
};
...
...
plugins/libsinglefileplugin/singlefileplugin.h
View file @
391ce7fb
...
...
@@ -33,7 +33,7 @@ class LibSingleFileInterface : public Kerfuffle::ReadOnlyArchiveInterface
Q_OBJECT
public:
LibSingleFileInterface
(
const
QString
&
filename
,
QObject
*
parent
);
LibSingleFileInterface
(
const
QString
&
filename
,
QObject
*
parent
=
0
);
virtual
~
LibSingleFileInterface
();
virtual
bool
list
();
...
...
plugins/libsinglefileplugin/xzplugin.h
View file @
391ce7fb
...
...
@@ -33,7 +33,7 @@ class LibXzInterface : public LibSingleFileInterface
Q_OBJECT
public:
LibXzInterface
(
const
QString
&
filename
,
QObject
*
parent
);
LibXzInterface
(
const
QString
&
filename
,
QObject
*
parent
=
0
);
virtual
~
LibXzInterface
();
};
...
...
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