Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
11b9a5c2
Commit
11b9a5c2
authored
Jan 26, 2010
by
Ludovic Fauvet
Browse files
Fix define name.
parent
fba03a74
Changes
4
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
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