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
Ark
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
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
Utilities
Ark
Commits
f75010be
Commit
f75010be
authored
Dec 26, 2014
by
Raphael Kubo da Costa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add `explicit' to some constructors that need it.
parent
5805c830
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
app/mainwindow.h
app/mainwindow.h
+1
-1
kerfuffle/addtoarchive.h
kerfuffle/addtoarchive.h
+1
-1
kerfuffle/extractiondialog.h
kerfuffle/extractiondialog.h
+1
-1
part/archivemodel.h
part/archivemodel.h
+1
-1
part/archiveview.h
part/archiveview.h
+1
-1
part/jobtracker.h
part/jobtracker.h
+2
-2
No files found.
app/mainwindow.h
View file @
f75010be
...
...
@@ -32,7 +32,7 @@ class MainWindow: public KParts::MainWindow
{
Q_OBJECT
public:
MainWindow
(
QWidget
*
parent
=
0
);
explicit
MainWindow
(
QWidget
*
parent
=
0
);
~
MainWindow
();
bool
loadPart
();
...
...
kerfuffle/addtoarchive.h
View file @
f75010be
...
...
@@ -52,7 +52,7 @@ class KERFUFFLE_EXPORT AddToArchive : public KJob
Q_OBJECT
public:
AddToArchive
(
QObject
*
parent
=
0
);
explicit
AddToArchive
(
QObject
*
parent
=
0
);
~
AddToArchive
();
bool
showAddDialog
();
...
...
kerfuffle/extractiondialog.h
View file @
f75010be
...
...
@@ -41,7 +41,7 @@ class KERFUFFLE_EXPORT ExtractionDialog : public KDirSelectDialog
{
Q_OBJECT
public:
ExtractionDialog
(
QWidget
*
parent
=
0
);
explicit
ExtractionDialog
(
QWidget
*
parent
=
0
);
virtual
~
ExtractionDialog
();
void
setShowSelectedFiles
(
bool
);
...
...
part/archivemodel.h
View file @
f75010be
...
...
@@ -42,7 +42,7 @@ class ArchiveModel: public QAbstractItemModel
{
Q_OBJECT
public:
ArchiveModel
(
const
QString
&
dbusPathName
,
QObject
*
parent
=
0
);
explicit
ArchiveModel
(
const
QString
&
dbusPathName
,
QObject
*
parent
=
0
);
~
ArchiveModel
();
QVariant
data
(
const
QModelIndex
&
index
,
int
role
)
const
;
...
...
part/archiveview.h
View file @
f75010be
...
...
@@ -29,7 +29,7 @@ class ArchiveView : public QTreeView
Q_OBJECT
public:
ArchiveView
(
QWidget
*
parent
=
0
);
explicit
ArchiveView
(
QWidget
*
parent
=
0
);
virtual
void
dragEnterEvent
(
class
QDragEnterEvent
*
event
);
virtual
void
dropEvent
(
class
QDropEvent
*
event
);
virtual
void
dragMoveEvent
(
class
QDragMoveEvent
*
event
);
...
...
part/jobtracker.h
View file @
f75010be
...
...
@@ -33,7 +33,7 @@ class JobTrackerWidget: public QFrame, public Ui::JobTrackerWidget
Q_OBJECT
public:
JobTrackerWidget
(
QWidget
*
parent
=
0
);
explicit
JobTrackerWidget
(
QWidget
*
parent
=
0
);
};
class
JobTracker
:
public
KAbstractWidgetJobTracker
...
...
@@ -41,7 +41,7 @@ class JobTracker: public KAbstractWidgetJobTracker
Q_OBJECT
public:
JobTracker
(
QWidget
*
parent
=
0
);
explicit
JobTracker
(
QWidget
*
parent
=
0
);
~
JobTracker
();
virtual
QWidget
*
widget
(
KJob
*
);
...
...
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