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
489f50aa
Commit
489f50aa
authored
Jan 23, 2019
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OpenFlipper Main file includes for python support
parent
abdf4114
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
OpenFlipper.cc
OpenFlipper.cc
+12
-0
No files found.
OpenFlipper.cc
View file @
489f50aa
...
...
@@ -66,6 +66,10 @@
#include <execinfo.h>
#endif
#ifdef PYTHON_ENABLED
#include <PythonInterpreter/PythonInterpreter.hh>
#endif
#ifdef USE_OPENMP
#endif
...
...
@@ -764,6 +768,9 @@ int main(int argc, char **argv)
// create core ( this also reads the ini files )
Core
*
w
=
new
Core
(
);
#ifdef PYTHON_ENABLED
setCorePointer
(
w
);
#endif
QString
tLang
=
OpenFlipperSettings
().
value
(
"Core/Language/Translation"
,
"en_US"
).
toString
();
...
...
@@ -820,6 +827,11 @@ int main(int argc, char **argv)
// create widget ( this also reads the ini files )
Core
*
w
=
new
Core
(
);
#ifdef PYTHON_ENABLED
setCorePointer
(
w
);
#endif
// After setting all Options from command line, build the real gui
w
->
init
();
...
...
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