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
KmPlot
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Education
KmPlot
Commits
df99832d
Commit
df99832d
authored
Dec 13, 2008
by
Eckhart Wörner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compiler warnings--
svn path=/trunk/KDE/kdeedu/kmplot/; revision=896349
parent
55c9e051
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
kmplot/function.cpp
kmplot/function.cpp
+2
-2
kmplot/view.cpp
kmplot/view.cpp
+0
-1
No files found.
kmplot/function.cpp
View file @
df99832d
...
...
@@ -808,8 +808,8 @@ QList< Plot > Function::plots( PlotCombinations combinations ) const
if
(
m_parameters
.
useList
)
{
int
pos
=
0
;
for
each
(
const
Value
&
v
,
m_parameters
.
list
)
const
int
listsize
=
m_parameters
.
list
.
size
()
;
for
(
int
pos
=
0
;
pos
<
listsize
;
++
pos
)
{
Parameter
param
(
Parameter
::
List
);
param
.
setListPos
(
pos
++
);
...
...
kmplot/view.cpp
View file @
df99832d
...
...
@@ -395,7 +395,6 @@ void View::draw( QPaintDevice * dev, PlotMedium medium )
// sliding the view about
painter
.
setRenderHint
(
QPainter
::
Antialiasing
,
m_zoomMode
!=
Translating
);
double
numPlots
=
XParser
::
self
()
->
m_ufkt
.
size
();
double
at
=
-
1
;
foreach
(
Function
*
function
,
XParser
::
self
()
->
m_ufkt
)
{
...
...
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