Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
plugin-GUI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
yehaojie
plugin-GUI
Commits
ea4857a0
Commit
ea4857a0
authored
11 years ago
by
jsiegle
Browse files
Options
Downloads
Patches
Plain Diff
Use absolute path for windowState.xml
parent
eff6bbe9
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/MainWindow.cpp
+0
-5
0 additions, 5 deletions
Source/MainWindow.cpp
Source/Processors/SpikeDetector.cpp
+1
-1
1 addition, 1 deletion
Source/Processors/SpikeDetector.cpp
with
1 addition
and
6 deletions
Source/MainWindow.cpp
+
0
−
5
View file @
ea4857a0
...
...
@@ -104,12 +104,7 @@ void MainWindow::saveWindowBounds()
std
::
cout
<<
"Saving window bounds."
<<
std
::
endl
;
#ifdef WIN32
File
file
=
File
::
getCurrentWorkingDirectory
().
getChildFile
(
"windowState.xml"
);
#else
File
file
=
File
(
"./windowState.xml"
);
#endif
XmlElement
*
xml
=
new
XmlElement
(
"MAINWINDOW"
);
...
...
This diff is collapsed.
Click to expand it.
Source/Processors/SpikeDetector.cpp
+
1
−
1
View file @
ea4857a0
...
...
@@ -466,7 +466,7 @@ void SpikeDetector::process(AudioSampleBuffer& buffer,
}
//
for (int xxx = 0; xxx < 100; xxx++) // overload with spikes for testing purposes
for
(
int
xxx
=
0
;
xxx
<
100
;
xxx
++
)
// overload with spikes for testing purposes
addSpikeEvent
(
&
newSpike
,
events
,
peakIndex
);
// advance the sample index
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment