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
Artikulate
Commits
e9a26bf3
Commit
e9a26bf3
authored
Jul 07, 2019
by
Andreas Cord-Landwehr
Browse files
Remove unneeded parent parameter
parent
54978947
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/core/resourcerepository.cpp
View file @
e9a26bf3
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
#include
<QDir>
#include
<QDir>
#include
<QDirIterator>
#include
<QDirIterator>
ResourceRepository
::
ResourceRepository
(
QObject
*
parent
)
ResourceRepository
::
ResourceRepository
()
:
ResourceRepository
(
QUrl
::
fromLocalFile
(
QStandardPaths
::
standardLocations
(
QStandardPaths
::
DataLocation
).
constFirst
()
+
QStringLiteral
(
"/courses/"
)))
:
ResourceRepository
(
QUrl
::
fromLocalFile
(
QStandardPaths
::
standardLocations
(
QStandardPaths
::
DataLocation
).
constFirst
()
+
QStringLiteral
(
"/courses/"
)))
{
{
}
}
...
...
src/core/resourcerepository.h
View file @
e9a26bf3
...
@@ -47,7 +47,7 @@ class ARTIKULATECORE_EXPORT ResourceRepository : public IResourceRepository
...
@@ -47,7 +47,7 @@ class ARTIKULATECORE_EXPORT ResourceRepository : public IResourceRepository
Q_INTERFACES
(
IResourceRepository
)
Q_INTERFACES
(
IResourceRepository
)
public:
public:
explicit
ResourceRepository
(
QObject
*
parent
=
nullptr
);
explicit
ResourceRepository
();
~
ResourceRepository
()
override
;
~
ResourceRepository
()
override
;
/**
/**
...
...
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