Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
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
Environments
Packages & Registries
Packages & Registries
Container Registry
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
Marco Bubke
flatpak-qt-creator
Commits
678c09c8
Commit
678c09c8
authored
Dec 18, 2008
by
Roberto Raggi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made line and column unsigned ints.
parent
22f223e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/libs/cplusplus/CppDocument.h
src/libs/cplusplus/CppDocument.h
+4
-4
No files found.
src/libs/cplusplus/CppDocument.h
View file @
678c09c8
...
...
@@ -138,10 +138,10 @@ public:
QString
fileName
()
const
{
return
_fileName
;
}
int
line
()
const
unsigned
line
()
const
{
return
_line
;
}
int
column
()
const
unsigned
column
()
const
{
return
_column
;
}
QString
text
()
const
...
...
@@ -150,8 +150,8 @@ public:
private:
int
_level
;
QString
_fileName
;
int
_line
;
int
_column
;
unsigned
_line
;
unsigned
_column
;
QString
_text
;
};
...
...
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