From 678c09c81318a8cd0aa864ddc1bff91405cb29ca Mon Sep 17 00:00:00 2001
From: Roberto Raggi <qtc-committer@nokia.com>
Date: Thu, 18 Dec 2008 10:51:25 +0100
Subject: [PATCH] Made line and column unsigned ints.

---
 src/libs/cplusplus/CppDocument.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/libs/cplusplus/CppDocument.h b/src/libs/cplusplus/CppDocument.h
index 57efe4fe33f..98b5ed1a2ad 100644
--- a/src/libs/cplusplus/CppDocument.h
+++ b/src/libs/cplusplus/CppDocument.h
@@ -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;
     };
 
-- 
GitLab