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
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
a708489f
Commit
a708489f
authored
Jul 13, 2012
by
Alexander Wiebel
Browse files
[FIX
#42
] Corrected button name
parent
c970c1a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/qt4gui/qt4/WMainWindow.cpp
src/qt4gui/qt4/WMainWindow.cpp
+2
-2
No files found.
src/qt4gui/qt4/WMainWindow.cpp
View file @
a708489f
...
...
@@ -285,7 +285,7 @@ void WMainWindow::setupGUI()
m_iconManager
.
addIcon
(
std
::
string
(
"coronal icon"
),
cor_xpm
);
m_iconManager
.
addIcon
(
std
::
string
(
"sagittal icon"
),
sag_xpm
);
m_loadButton
=
new
QAction
(
m_iconManager
.
getIcon
(
"load"
),
"Load Dataset"
,
m_permanentToolBar
);
m_loadButton
=
new
QAction
(
m_iconManager
.
getIcon
(
"load"
),
"Load Dataset
or Project
"
,
m_permanentToolBar
);
m_loadButton
->
setShortcut
(
QKeySequence
(
QKeySequence
::
Open
)
);
QAction
*
roiButton
=
new
QAction
(
m_iconManager
.
getIcon
(
"ROI icon"
),
"ROI"
,
m_permanentToolBar
);
QAction
*
resetButton
=
new
QAction
(
m_iconManager
.
getIcon
(
"view"
),
"Reset"
,
m_permanentToolBar
);
...
...
@@ -297,7 +297,7 @@ void WMainWindow::setupGUI()
connect
(
roiButton
,
SIGNAL
(
triggered
(
bool
)
),
this
,
SLOT
(
newRoi
()
)
);
connect
(
projectSaveButton
,
SIGNAL
(
triggered
(
bool
)
),
this
,
SLOT
(
projectSaveAll
()
)
);
m_loadButton
->
setToolTip
(
"Load a dataset from file"
);
m_loadButton
->
setToolTip
(
"Load a dataset
or project
from file"
);
resetButton
->
setToolTip
(
"Reset main view"
);
roiButton
->
setToolTip
(
"Create new ROI"
);
projectSaveButton
->
setToolTip
(
"Save current project to file"
);
...
...
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