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
Krita
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
Tusooa Zhu
Krita
Commits
5d7168da
Commit
5d7168da
authored
Nov 28, 2014
by
Jarosław Staniek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix memory leaks
Thanks to Dr. Valgrind
parent
179dc5c8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
libs/koreport/common/KoReportItemLine.cpp
libs/koreport/common/KoReportItemLine.cpp
+4
-0
libs/koreport/common/KoReportItemLine.h
libs/koreport/common/KoReportItemLine.h
+1
-1
plugins/reporting/barcode/KoReportItemBarcode.cpp
plugins/reporting/barcode/KoReportItemBarcode.cpp
+1
-0
plugins/reporting/chart/KoReportItemChart.cpp
plugins/reporting/chart/KoReportItemChart.cpp
+1
-0
No files found.
libs/koreport/common/KoReportItemLine.cpp
View file @
5d7168da
...
...
@@ -59,6 +59,10 @@ KoReportItemLine::KoReportItemLine(QDomNode & element)
}
}
KoReportItemLine
::~
KoReportItemLine
()
{
delete
m_set
;
}
void
KoReportItemLine
::
createProperties
()
{
...
...
libs/koreport/common/KoReportItemLine.h
View file @
5d7168da
...
...
@@ -43,7 +43,7 @@ public:
createProperties
();
}
explicit
KoReportItemLine
(
QDomNode
&
element
);
~
KoReportItemLine
()
{}
;
~
KoReportItemLine
();
virtual
QString
typeName
()
const
;
virtual
int
renderSimpleData
(
OROPage
*
page
,
OROSection
*
section
,
const
QPointF
&
offset
,
const
QVariant
&
data
,
KRScriptHandler
*
script
);
...
...
plugins/reporting/barcode/KoReportItemBarcode.cpp
View file @
5d7168da
...
...
@@ -126,6 +126,7 @@ void KoReportItemBarcode::createProperties()
KoReportItemBarcode
::~
KoReportItemBarcode
()
{
delete
m_set
;
}
int
KoReportItemBarcode
::
alignment
()
...
...
plugins/reporting/chart/KoReportItemChart.cpp
View file @
5d7168da
...
...
@@ -84,6 +84,7 @@ KoReportItemChart::KoReportItemChart(QDomNode & element)
KoReportItemChart
::~
KoReportItemChart
()
{
delete
m_set
;
}
void
KoReportItemChart
::
createProperties
()
...
...
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