Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
94345f93
Commit
94345f93
authored
Feb 06, 2017
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed several warnings
parent
8e61266e
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
23 additions
and
23 deletions
+23
-23
common/UpdateType.hh
common/UpdateType.hh
+1
-1
threads/OpenFlipperThread.hh
threads/OpenFlipperThread.hh
+2
-2
widgets/aboutWidget/aboutWidget.hh
widgets/aboutWidget/aboutWidget.hh
+1
-1
widgets/coreWidget/ColorStatusBar.hh
widgets/coreWidget/ColorStatusBar.hh
+1
-1
widgets/coreWidget/SideArea.hh
widgets/coreWidget/SideArea.hh
+1
-1
widgets/coreWidget/SideElement.hh
widgets/coreWidget/SideElement.hh
+1
-1
widgets/glWidget/CursorPainter.hh
widgets/glWidget/CursorPainter.hh
+1
-1
widgets/glWidget/QtGLGraphicsView.hh
widgets/glWidget/QtGLGraphicsView.hh
+1
-1
widgets/glWidget/QtGLViewerLayout.hh
widgets/glWidget/QtGLViewerLayout.hh
+1
-1
widgets/glWidget/QtMultiViewLayout.hh
widgets/glWidget/QtMultiViewLayout.hh
+1
-1
widgets/loggerWidget/loggerWidget.hh
widgets/loggerWidget/loggerWidget.hh
+1
-1
widgets/optionsWidget/ShortcutButton.hh
widgets/optionsWidget/ShortcutButton.hh
+1
-1
widgets/postProcessorWidget/postProcessorWidget.hh
widgets/postProcessorWidget/postProcessorWidget.hh
+1
-1
widgets/processManagerWidget/processManagerWidget.hh
widgets/processManagerWidget/processManagerWidget.hh
+1
-1
widgets/rendererWidget/TextBrowserWidget.hh
widgets/rendererWidget/TextBrowserWidget.hh
+2
-2
widgets/rendererWidget/renderObjectHighLighter.hh
widgets/rendererWidget/renderObjectHighLighter.hh
+2
-2
widgets/rendererWidget/rendererObjectWidget.hh
widgets/rendererWidget/rendererObjectWidget.hh
+1
-1
widgets/rendererWidget/rendererWidget.hh
widgets/rendererWidget/rendererWidget.hh
+1
-1
widgets/stereoSettingsWidget/stereoSettingsWidget.hh
widgets/stereoSettingsWidget/stereoSettingsWidget.hh
+1
-1
widgets/videoCaptureDialog/VideoCaptureDialog.hh
widgets/videoCaptureDialog/VideoCaptureDialog.hh
+1
-1
No files found.
common/UpdateType.hh
View file @
94345f93
...
...
@@ -73,7 +73,7 @@ class DLLEXPORT UpdateType {
UpdateType
(
const
UpdateType
&
_type
);
explicit
UpdateType
(
UpdateTypeSet
_set
);
UpdateType
(
UpdateTypeSet
_set
);
/// Exact compare operator
bool
operator
==
(
const
UpdateType
&
_type
)
const
;
...
...
threads/OpenFlipperThread.hh
View file @
94345f93
...
...
@@ -85,7 +85,7 @@ class DLLEXPORT OpenFlipperThread : public QThread
Q_OBJECT
public:
OpenFlipperThread
(
QString
_jobId
);
explicit
OpenFlipperThread
(
QString
_jobId
);
~
OpenFlipperThread
();
//===========================================================================
...
...
@@ -251,7 +251,7 @@ class DLLEXPORT OpenFlipperJob : public QObject
Q_OBJECT
public:
OpenFlipperJob
(
const
QString
_jobId
)
:
jobId_
(
_jobId
)
{}
explicit
OpenFlipperJob
(
const
QString
_jobId
)
:
jobId_
(
_jobId
)
{}
~
OpenFlipperJob
();
signals:
...
...
widgets/aboutWidget/aboutWidget.hh
View file @
94345f93
...
...
@@ -62,7 +62,7 @@ class AboutWidget : public QMainWindow, public Ui::AboutWidget
Q_OBJECT
public:
AboutWidget
(
QWidget
*
parent
=
0
);
explicit
AboutWidget
(
QWidget
*
parent
=
0
);
void
keyPressEvent
(
QKeyEvent
*
event
);
};
...
...
widgets/coreWidget/ColorStatusBar.hh
View file @
94345f93
...
...
@@ -58,7 +58,7 @@ class ColorStatusBar : public QStatusBar
Q_OBJECT
public:
ColorStatusBar
(
QWidget
*
parent
=
0
);
explicit
ColorStatusBar
(
QWidget
*
parent
=
0
);
public
slots
:
void
showMessage
(
const
QString
&
message
,
int
timeout
=
0
);
...
...
widgets/coreWidget/SideArea.hh
View file @
94345f93
...
...
@@ -83,7 +83,7 @@ class SideArea : public QWidget {
/** Create a SideElement
\param _parent Parent widget
*/
SideArea
(
QWidget
*
_parent
=
0
);
explicit
SideArea
(
QWidget
*
_parent
=
0
);
/** Adds a plugin tool widget
\param _plugin plugin corresponding to the widget
...
...
widgets/coreWidget/SideElement.hh
View file @
94345f93
...
...
@@ -127,7 +127,7 @@ class SideElement : public QWidget
class
TopArea
:
public
QWidget
{
public:
TopArea
(
SideElement
*
_e
);
explicit
TopArea
(
SideElement
*
_e
);
virtual
void
mousePressEvent
(
QMouseEvent
*
_event
);
private:
...
...
widgets/glWidget/CursorPainter.hh
View file @
94345f93
...
...
@@ -77,7 +77,7 @@ class DLLEXPORT CursorPainter : public QObject
public:
/// Constructor
CursorPainter
(
QObject
*
_parent
=
0
);
explicit
CursorPainter
(
QObject
*
_parent
=
0
);
/// Destructor
~
CursorPainter
();
...
...
widgets/glWidget/QtGLGraphicsView.hh
View file @
94345f93
...
...
@@ -75,7 +75,7 @@ class DLLEXPORT QtGLGraphicsView : public QGraphicsView
Q_OBJECT
public:
QtGLGraphicsView
(
QWidget
*
_parent
);
explicit
QtGLGraphicsView
(
QWidget
*
_parent
);
signals:
void
sceneRectChanged
(
const
QRectF
&
rect
);
...
...
widgets/glWidget/QtGLViewerLayout.hh
View file @
94345f93
...
...
@@ -73,7 +73,7 @@ class QtGLViewerLayout : public QGraphicsLayout
{
public:
QtGLViewerLayout
(
QGraphicsLayoutItem
*
_parent
=
0
);
explicit
QtGLViewerLayout
(
QGraphicsLayoutItem
*
_parent
=
0
);
/// Add Wheel Widget to Layout
void
addWheelX
(
QGraphicsWidget
*
_item
);
...
...
widgets/glWidget/QtMultiViewLayout.hh
View file @
94345f93
...
...
@@ -119,7 +119,7 @@ class DLLEXPORT QtMultiViewLayout : public QGraphicsLayout
HSplit
};
QtMultiViewLayout
(
QGraphicsLayoutItem
*
_parent
=
0
);
explicit
QtMultiViewLayout
(
QGraphicsLayoutItem
*
_parent
=
0
);
/// Adds Widget to Layout
void
addItem
(
QGraphicsWidget
*
_item
,
unsigned
int
_pos
);
...
...
widgets/loggerWidget/loggerWidget.hh
View file @
94345f93
...
...
@@ -73,7 +73,7 @@ class LoggerWidget : public QWidget
Q_OBJECT
public:
LoggerWidget
(
QWidget
*
parent
=
0
);
explicit
LoggerWidget
(
QWidget
*
parent
=
0
);
~
LoggerWidget
();
...
...
widgets/optionsWidget/ShortcutButton.hh
View file @
94345f93
...
...
@@ -83,7 +83,7 @@ class ShortcutButton : public QPushButton
void
mousePressEvent
(
QMouseEvent
*
event
);
void
mouseReleaseEvent
(
QMouseEvent
*
event
);
public:
ShortcutButton
(
QWidget
*
_parent
=
0
);
explicit
ShortcutButton
(
QWidget
*
_parent
=
0
);
void
setCurrentShortcut
(
int
_key
,
Qt
::
KeyboardModifiers
_modifiers
);
...
...
widgets/postProcessorWidget/postProcessorWidget.hh
View file @
94345f93
...
...
@@ -67,7 +67,7 @@ class PostProcessorDialog : public QDialog, public Ui::PostProcessorWidget
void
updateExaminer
(
unsigned
_viewer
);
public:
PostProcessorDialog
(
QWidget
*
_parent
=
0
);
explicit
PostProcessorDialog
(
QWidget
*
_parent
=
0
);
/// return the names of all saved post processors
static
QStringList
getSavedPostProcessorNames
(
const
unsigned
_examiner
);
...
...
widgets/processManagerWidget/processManagerWidget.hh
View file @
94345f93
...
...
@@ -97,7 +97,7 @@ class ProcessManagerWidget : public QWidget, public Ui::ProcessManagerWidget
public:
ProcessManagerWidget
(
QWidget
*
parent
=
0
)
:
QWidget
(
parent
)
{
explicit
ProcessManagerWidget
(
QWidget
*
parent
=
0
)
:
QWidget
(
parent
)
{
setupUi
(
this
);
};
...
...
widgets/rendererWidget/TextBrowserWidget.hh
View file @
94345f93
...
...
@@ -97,7 +97,7 @@ class TextBrowserWidget : public QPlainTextEdit
public:
TextBrowserWidget
(
QWidget
*
parent
=
0
);
explicit
TextBrowserWidget
(
QWidget
*
parent
=
0
);
void
sideAreaPaintEvent
(
QPaintEvent
*
event
);
int
sideAreaWidth
();
...
...
@@ -147,7 +147,7 @@ class TextBrowserWidget : public QPlainTextEdit
class
TextBrowserSideArea
:
public
QWidget
{
public:
TextBrowserSideArea
(
TextBrowserWidget
*
_textBrowser
)
:
explicit
TextBrowserSideArea
(
TextBrowserWidget
*
_textBrowser
)
:
QWidget
(
_textBrowser
),
textBrowser_
(
_textBrowser
)
{}
...
...
widgets/rendererWidget/renderObjectHighLighter.hh
View file @
94345f93
...
...
@@ -61,8 +61,8 @@ class RenderObjectHighlighter : public QSyntaxHighlighter
Q_OBJECT
public:
RenderObjectHighlighter
(
QTextDocument
*
parent
=
0
);
RenderObjectHighlighter
(
QTextEdit
*
parent
);
explicit
RenderObjectHighlighter
(
QTextDocument
*
parent
=
0
);
explicit
RenderObjectHighlighter
(
QTextEdit
*
parent
);
/// Updates the highlighter with the current rule set defined in the patterns
void
update
();
...
...
widgets/rendererWidget/rendererObjectWidget.hh
View file @
94345f93
...
...
@@ -59,7 +59,7 @@ class RendererObjectWidget : public QDialog, public Ui::RendererObjectWidget
Q_OBJECT
public:
RendererObjectWidget
(
QWidget
*
parent
=
0
);
explicit
RendererObjectWidget
(
QWidget
*
parent
=
0
);
protected:
...
...
widgets/rendererWidget/rendererWidget.hh
View file @
94345f93
...
...
@@ -60,7 +60,7 @@ class RendererDialog : public QDialog, public Ui::RendererWidget
Q_OBJECT
public:
RendererDialog
(
QWidget
*
parent
=
0
);
explicit
RendererDialog
(
QWidget
*
parent
=
0
);
...
...
widgets/stereoSettingsWidget/stereoSettingsWidget.hh
View file @
94345f93
...
...
@@ -69,5 +69,5 @@ class StereoSettingsWidget : public QWidget, public Ui::StereoSettingsWidget
Q_OBJECT
public:
StereoSettingsWidget
(
QWidget
*
parent
=
0
);
explicit
StereoSettingsWidget
(
QWidget
*
parent
=
0
);
};
widgets/videoCaptureDialog/VideoCaptureDialog.hh
View file @
94345f93
...
...
@@ -60,7 +60,7 @@ class VideoCaptureDialog : public QDialog, public Ui::VideoCaptureDialog
Q_OBJECT
public:
VideoCaptureDialog
(
QWidget
*
parent
=
0
);
explicit
VideoCaptureDialog
(
QWidget
*
parent
=
0
);
private
slots
:
void
slotStartVideoCapture
();
...
...
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