Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLMC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
luyikei
VLMC
Commits
11b9a5c2
Commit
11b9a5c2
authored
Jan 26, 2010
by
Ludovic Fauvet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix define name.
parent
fba03a74
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
CMakeLists.txt
CMakeLists.txt
+1
-1
cmake/config.h.cmake
cmake/config.h.cmake
+1
-1
src/Gui/MainWindow.cpp
src/Gui/MainWindow.cpp
+2
-2
src/Gui/MainWindow.h
src/Gui/MainWindow.h
+1
-1
No files found.
CMakeLists.txt
View file @
11b9a5c2
...
...
@@ -41,7 +41,7 @@ ENDIF(WIN32)
# VLMC requires libVLC
#SET (WITH_LIBVLC FALSE CACHE BOOL "Compile LibVLC in VLMC")
SET
(
WITH_CRASH
HANDLER FALSE CACHE BOOL
"Enable the crash handler
"
)
SET
(
WITH_CRASH
BUTTON FALSE CACHE BOOL
"Enable the crash button
"
)
FIND_PACKAGE
(
LIBVLC
)
IF
(
NOT LIBVLC_FOUND
)
...
...
cmake/config.h.cmake
View file @
11b9a5c2
...
...
@@ -2,7 +2,7 @@
#define CONFIG_H
/* With crash handler */
#cmakedefine WITH_CRASH
HANDLER
#cmakedefine WITH_CRASH
BUTTON
/* Absolute path to plugins */
#cmakedefine VLMC_EFFECTS_DIR "@VLMC_EFFECTS_DIR@"
...
...
src/Gui/MainWindow.cpp
View file @
11b9a5c2
...
...
@@ -91,7 +91,7 @@ MainWindow::MainWindow( QWidget *parent ) :
createGlobalPreferences
();
createProjectPreferences
();
initializeMenuKeyboardShortcut
();
#ifdef WITH_CRASH
HANDLER
#ifdef WITH_CRASH
BUTTON
setupCrashTester
();
#endif
...
...
@@ -596,7 +596,7 @@ void MainWindow::canRedoChanged( bool canRedo )
m_ui
.
actionRedo
->
setEnabled
(
canRedo
);
}
#ifdef WITH_CRASH
HANDLER
#ifdef WITH_CRASH
BUTTON
void
MainWindow
::
setupCrashTester
()
{
QAction
*
actionCrash
=
new
QAction
(
this
);
...
...
src/Gui/MainWindow.h
View file @
11b9a5c2
...
...
@@ -66,7 +66,7 @@ private:
void
createGlobalPreferences
();
void
createProjectPreferences
();
void
initializeMenuKeyboardShortcut
();
#ifdef WITH_CRASH
HANDLER
#ifdef WITH_CRASH
BUTTON
void
setupCrashTester
();
#endif
/**
...
...
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