Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Education
Minuet
Commits
b4eba0e5
Commit
b4eba0e5
authored
Apr 04, 2016
by
Sandro Andrade
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'Applications/16.04'
parents
1de43e83
c3f4dbb8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
src/minuet.cpp
src/minuet.cpp
+3
-1
src/minuet.h
src/minuet.h
+1
-1
No files found.
src/minuet.cpp
View file @
b4eba0e5
...
...
@@ -66,7 +66,7 @@ Minuet::Minuet() :
m_quickView
->
setResizeMode
(
QQuickView
::
SizeRootObjectToView
);
setCentralWidget
(
QWidget
::
createWindowContainer
(
m_quickView
,
this
));
KStandardAction
::
open
(
this
,
SLOT
(
fileOpen
()),
actionCollection
());
//
KStandardAction::open(this, SLOT(fileOpen()), actionCollection());
KStandardAction
::
quit
(
qApp
,
SLOT
(
closeAllWindows
()),
actionCollection
());
KStandardAction
::
preferences
(
this
,
SLOT
(
settingsConfigure
()),
actionCollection
());
...
...
@@ -149,12 +149,14 @@ bool Minuet::queryClose()
return
true
;
}
/*
void Minuet::fileOpen()
{
QString fileName = QFileDialog::getOpenFileName(this, i18n("Open File")); // krazy:exclude=qclasses
if (!fileName.isEmpty())
m_midiSequencer->openFile(fileName);
}
*/
void
Minuet
::
runWizard
()
{
...
...
src/minuet.h
View file @
b4eba0e5
...
...
@@ -73,7 +73,7 @@ private Q_SLOTS:
/**
* Create a new window
*/
void
fileOpen
();
//
void fileOpen();
void
runWizard
();
/**
...
...
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