Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
8939095b
Commit
8939095b
authored
Jul 30, 2016
by
luyikei
Browse files
Remove useless semicolons
parent
c6fceb7c
Changes
8
Hide whitespace changes
Inline
Side-by-side
src/EffectsEngine/EffectHelper.cpp
View file @
8939095b
...
...
@@ -42,7 +42,7 @@ conv( std::string str, SettingValue::Type type )
return
QVariant
(
std
::
stoi
(
str
)
);
else
return
QVariant
(
QString
::
fromStdString
(
str
)
);
}
;
}
EffectHelper
::
EffectHelper
(
const
char
*
id
,
qint64
begin
,
qint64
end
,
const
QString
&
uuid
)
:
...
...
src/Gui/LanguageHelper.h
View file @
8939095b
...
...
@@ -32,7 +32,7 @@ class QTranslator;
class
LanguageHelper
:
public
QObject
,
public
Singleton
<
LanguageHelper
>
{
Q_OBJECT
Q_DISABLE_COPY
(
LanguageHelper
)
;
Q_DISABLE_COPY
(
LanguageHelper
)
public
slots
:
void
languageChanged
(
const
QVariant
&
lang
);
...
...
src/Gui/WorkflowFileRendererDialog.h
View file @
8939095b
...
...
@@ -31,7 +31,7 @@ class RendererEventWatcher;
class
WorkflowFileRendererDialog
:
public
QDialog
{
Q_OBJECT
Q_DISABLE_COPY
(
WorkflowFileRendererDialog
)
;
Q_DISABLE_COPY
(
WorkflowFileRendererDialog
)
public:
WorkflowFileRendererDialog
(
quint32
width
,
quint32
height
,
qint64
totalFrames
,
RendererEventWatcher
*
eventWatcher
);
void
setOutputFileName
(
const
QString
&
filename
);
...
...
src/Gui/library/MediaLibrary.h
View file @
8939095b
...
...
@@ -34,7 +34,7 @@ class ViewController;
class
MediaLibrary
:
public
QWidget
{
Q_OBJECT
Q_DISABLE_COPY
(
MediaLibrary
)
;
Q_DISABLE_COPY
(
MediaLibrary
)
public:
typedef
bool
(
*
Filter
)(
const
Clip
*
,
const
QString
&
filter
);
...
...
src/Gui/media/ClipMetadataDisplayer.h
View file @
8939095b
...
...
@@ -33,7 +33,7 @@ class Media;
class
ClipMetadataDisplayer
:
public
QWidget
{
Q_OBJECT
Q_DISABLE_COPY
(
ClipMetadataDisplayer
)
;
Q_DISABLE_COPY
(
ClipMetadataDisplayer
)
public:
explicit
ClipMetadataDisplayer
(
QWidget
*
parent
=
0
);
...
...
src/Library/Library.h
View file @
8939095b
...
...
@@ -46,7 +46,7 @@ class Settings;
class
Library
:
public
MediaContainer
{
Q_OBJECT
Q_DISABLE_COPY
(
Library
)
;
Q_DISABLE_COPY
(
Library
)
public:
Library
(
Settings
*
projectSettings
);
...
...
src/Project/Project.h
View file @
8939095b
...
...
@@ -45,7 +45,7 @@ class Project : public QObject
static
const
QString
backupSuffix
;
public:
Q_DISABLE_COPY
(
Project
)
;
Q_DISABLE_COPY
(
Project
)
Project
(
Settings
*
settings
);
virtual
~
Project
();
...
...
src/Workflow/Helper.h
View file @
8939095b
...
...
@@ -55,6 +55,6 @@ namespace Workflow
};
}
Q_DECLARE_METATYPE
(
Workflow
::
Helper
*
)
;
Q_DECLARE_METATYPE
(
Workflow
::
Helper
*
)
#endif // IHELPER_H
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