aboutsummaryrefslogtreecommitdiffstats
path: root/typesystem.h
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.lima@openbossa.org>2010-04-13 21:13:57 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-09 19:09:59 -0300
commit133479369928c590d4c351064a356be575debd6c (patch)
tree8fe616b0b1455816eb1e756df2049ea012a5ff3d /typesystem.h
parent5325b5ba762865ad63e76595cf3e7c0562a7f76b (diff)
Fixed constness of Include::isValid.
P.S.: This is a ABI change.
Diffstat (limited to 'typesystem.h')
-rw-r--r--typesystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/typesystem.h b/typesystem.h
index b47a20030..ce5104f9f 100644
--- a/typesystem.h
+++ b/typesystem.h
@@ -50,7 +50,7 @@ struct APIEXTRACTOR_API Include
Include() : type(IncludePath) {}
Include(IncludeType t, const QString &nam) : type(t), name(nam) {};
- bool isValid()
+ bool isValid() const
{
return !name.isEmpty();
}