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
O
OpenFlipper
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
6e3cea22
Commit
6e3cea22
authored
Mar 09, 2020
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed deprecated function calls
parent
5edaabda
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
14 deletions
+14
-14
Core/PluginLoader.cc
Core/PluginLoader.cc
+1
-1
common/GlobalOptions.cc
common/GlobalOptions.cc
+1
-1
libs_required/ACG/QwtWidgets/QwtHistogramm.cc
libs_required/ACG/QwtWidgets/QwtHistogramm.cc
+2
-2
widgets/coreWidget/viewerControl.cc
widgets/coreWidget/viewerControl.cc
+3
-3
widgets/filePicker/FilePicker.cc
widgets/filePicker/FilePicker.cc
+4
-4
widgets/rendererWidget/TextBrowserWidget.cc
widgets/rendererWidget/TextBrowserWidget.cc
+1
-1
widgets/snapshotDialog/SnapshotDialog.cc
widgets/snapshotDialog/SnapshotDialog.cc
+2
-2
No files found.
Core/PluginLoader.cc
View file @
6e3cea22
...
...
@@ -321,7 +321,7 @@ void Core::loadPlugins()
for
(
int
i
=
0
;
i
<
pluginlist
.
size
();
)
{
const
QString
bn
=
QFileInfo
(
pluginlist
[
i
]).
fileName
();
if
(
staticPlugins
.
contains
(
bn
))
{
emit
log
(
LOGOUT
,
tr
Utf8
(
"Not loading dynamic %1 as it is statically "
emit
log
(
LOGOUT
,
tr
(
"Not loading dynamic %1 as it is statically "
"linked against OpenFlipper."
).
arg
(
bn
));
pluginlist
.
removeAt
(
i
);
}
else
{
...
...
common/GlobalOptions.cc
View file @
6e3cea22
...
...
@@ -931,7 +931,7 @@ bool initializeSettings() {
//==================================================================================================
// Remember the main application directory (assumed to be one above executable Path)
applicationDir_
=
QCoreApplication
::
applicationDirPath
(
);
applicationDir_
.
setPath
(
QCoreApplication
::
applicationDirPath
()
);
// When using cmake, we get the absolute path to the Application directory via a define
applicationDir_
.
cd
(
OPENFLIPPER_APPDIR
);
...
...
libs_required/ACG/QwtWidgets/QwtHistogramm.cc
View file @
6e3cea22
...
...
@@ -261,8 +261,8 @@ void Histogram::drawBar(QPainter *painter, Qt::Orientation, const QRect& rect) c
const
QRect
r
=
rect
.
normalized
();
const
int
factor
=
125
;
const
QColor
light
(
color
.
light
(
factor
));
const
QColor
dark
(
color
.
dark
(
factor
));
const
QColor
light
(
color
.
light
er
(
factor
));
const
QColor
dark
(
color
.
dark
er
(
factor
));
painter
->
setBrush
(
color
);
painter
->
setPen
(
Qt
::
NoPen
);
...
...
widgets/coreWidget/viewerControl.cc
View file @
6e3cea22
...
...
@@ -415,7 +415,7 @@ static QString suggestSnapshotFilename(QString mostRecentPath) {
std
::
cout
<<
"suggestSnapshotFilename(): Most recent path invalid. "
"Doesn't exist. Returning empty string."
<<
std
::
endl
;
#endif
return
QString
::
null
;
return
QString
()
;
}
QString
base_name
=
fi
.
completeBaseName
();
...
...
@@ -431,7 +431,7 @@ static QString suggestSnapshotFilename(QString mostRecentPath) {
std
::
cout
<<
"suggestSnapshotFilename(): Regexp didn't match. This "
"should be impossible."
<<
std
::
endl
;
#endif
return
QString
::
null
;
return
QString
()
;
}
QString
pre
=
base_name_re
.
cap
(
1
),
...
...
@@ -484,7 +484,7 @@ static QString suggestSnapshotFilename(QString mostRecentPath) {
std
::
cout
<<
"suggestSnapshotFilename(): No luck incrementing file_no. "
"Aborting, returning empty string."
<<
std
::
endl
;
#endif
return
QString
::
null
;
return
QString
()
;
}
///Take a snapshot of the whole application
...
...
widgets/filePicker/FilePicker.cc
View file @
6e3cea22
...
...
@@ -47,7 +47,7 @@
FilePicker
::
FilePicker
(
QWidget
*
parent
)
:
QWidget
(
parent
),
textBox_
(
new
QComboBox
),
browseButton_
(
new
QPushButton
(
tr
Utf8
(
"Browse..."
))),
browseButton_
(
new
QPushButton
(
tr
(
"Browse..."
))),
recent_files_ini_key_
(
"GenericFilePickerRecents"
),
dialog_type_
(
DT_OPEN_FILE
),
overwrite_confirmed_by_user_
(
false
)
{
...
...
@@ -60,7 +60,7 @@ FilePicker::FilePicker(QString recent_files_ini_key,
QWidget
*
parent
)
:
QWidget
(
parent
),
textBox_
(
new
QComboBox
),
browseButton_
(
new
QPushButton
(
tr
Utf8
(
"Browse..."
))),
browseButton_
(
new
QPushButton
(
tr
(
"Browse..."
))),
recent_files_ini_key_
(
recent_files_ini_key
),
dialog_type_
(
dialog_type
),
overwrite_confirmed_by_user_
(
false
)
{
...
...
@@ -114,8 +114,8 @@ bool FilePicker::confirm_overwrite_if_necessary() {
const
QString
file_name
=
QFileInfo
(
currentFileName
()).
fileName
();
const
QMessageBox
::
StandardButton
result
=
QMessageBox
::
question
(
this
,
tr
Utf8
(
"Overwrite File?"
),
tr
Utf8
(
"The file
\"
%1
\"
exists. "
this
,
tr
(
"Overwrite File?"
),
tr
(
"The file
\"
%1
\"
exists. "
"Do you want to overwrite?"
)
.
arg
(
file_name
),
QMessageBox
::
Yes
|
QMessageBox
::
No
,
...
...
widgets/rendererWidget/TextBrowserWidget.cc
View file @
6e3cea22
...
...
@@ -79,7 +79,7 @@ int TextBrowserWidget::sideAreaWidth() {
++
digits
;
}
int
space
=
3
+
fontMetrics
().
width
(
QLatin1Char
(
'9'
))
*
digits
;
int
space
=
3
+
fontMetrics
().
horizontalAdvance
(
QLatin1Char
(
'9'
))
*
digits
;
return
space
;
}
...
...
widgets/snapshotDialog/SnapshotDialog.cc
View file @
6e3cea22
...
...
@@ -200,11 +200,11 @@ void SnapshotDialog::filenameChanged(const QString &new_filename) {
if
(
!
QFileInfo
(
fi
.
path
()).
isWritable
())
{
static
const
char
*
style
=
"background: #ffffcc;"
;
filename
->
setStyleSheet
(
style
);
warning_lb
->
setText
(
tr
Utf8
(
"Warning: Folder not writable."
));
warning_lb
->
setText
(
tr
(
"Warning: Folder not writable."
));
}
else
if
(
fi
.
exists
())
{
static
const
char
*
style
=
"background: #ffcccc;"
;
filename
->
setStyleSheet
(
style
);
warning_lb
->
setText
(
tr
Utf8
(
"Warning: File exists and will be "
warning_lb
->
setText
(
tr
(
"Warning: File exists and will be "
"overwritten without further warning."
));
}
else
{
static
const
char
*
style
=
""
;
...
...
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