Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
7a651913
Commit
7a651913
authored
Feb 11, 2010
by
Roberto Raggi
Browse files
Moved the code in the source file.
parent
75229edc
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/libs/qmljs/qmljsdocument.cpp
View file @
7a651913
...
...
@@ -129,6 +129,22 @@ void Document::setDocumentRevision(int revision)
_documentRevision
=
revision
;
}
QString
Document
::
fileName
()
const
{
return
_fileName
;
}
QString
Document
::
path
()
const
{
return
_path
;
}
QString
Document
::
componentName
()
const
{
return
_componentName
;
}
bool
Document
::
parse_helper
(
int
startToken
)
{
Q_ASSERT
(
!
_engine
);
...
...
src/libs/qmljs/qmljsdocument.h
View file @
7a651913
...
...
@@ -77,9 +77,9 @@ public:
int
documentRevision
()
const
;
void
setDocumentRevision
(
int
documentRevision
);
QString
fileName
()
const
{
return
_fileName
;
}
QString
path
()
const
{
return
_path
;
}
QString
componentName
()
const
{
return
_componentName
;
}
QString
fileName
()
const
;
QString
path
()
const
;
QString
componentName
()
const
;
private:
bool
parse_helper
(
int
kind
);
...
...
Write
Preview
Supports
Markdown
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