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
KDevelop
KDevelop
Commits
129d26b2
Commit
129d26b2
authored
Jun 11, 2007
by
Andreas Pakulat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make destructors virtual so if need arises, we can provide API for subclasses in a BC way
parent
3db0f500
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
src/vcs/vcsannotation.h
src/vcs/vcsannotation.h
+1
-1
src/vcs/vcsdiff.h
src/vcs/vcsdiff.h
+1
-1
src/vcs/vcsevent.h
src/vcs/vcsevent.h
+2
-2
src/vcs/vcshelpers.h
src/vcs/vcshelpers.h
+1
-1
No files found.
src/vcs/vcsannotation.h
View file @
129d26b2
...
...
@@ -45,7 +45,7 @@ class KDEVPLATFORMVCS_EXPORT VcsAnnotation
public:
VcsAnnotation
();
VcsAnnotation
(
const
VcsAnnotation
&
);
~
VcsAnnotation
();
virtual
~
VcsAnnotation
();
/**
* @return the local url of the file
*/
...
...
src/vcs/vcsdiff.h
View file @
129d26b2
...
...
@@ -53,7 +53,7 @@ public:
};
VcsDiff
();
~
VcsDiff
();
virtual
~
VcsDiff
();
VcsDiff
(
const
VcsDiff
&
);
/**
...
...
src/vcs/vcsevent.h
View file @
129d26b2
...
...
@@ -60,7 +60,7 @@ public:
Q_DECLARE_FLAGS
(
Actions
,
Action
)
VcsItemEvent
();
~
VcsItemEvent
();
virtual
~
VcsItemEvent
();
VcsItemEvent
(
const
VcsItemEvent
&
);
QString
repositoryLocation
()
const
;
...
...
@@ -92,7 +92,7 @@ class KDEVPLATFORMVCS_EXPORT VcsEvent
{
public:
VcsEvent
();
~
VcsEvent
();
virtual
~
VcsEvent
();
VcsEvent
(
const
VcsEvent
&
);
VcsRevision
revision
();
QString
author
();
...
...
src/vcs/vcshelpers.h
View file @
129d26b2
...
...
@@ -60,7 +60,7 @@ public:
};
VcsMapping
();
~
VcsMapping
();
virtual
~
VcsMapping
();
VcsMapping
(
const
VcsMapping
&
);
void
addMapping
(
const
QString
&
sourceLocation
,
...
...
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