aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/src/integer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c++-qt/src/integer.cpp')
-rw-r--r--c++-qt/src/integer.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/c++-qt/src/integer.cpp b/c++-qt/src/integer.cpp
index 967eb30..1c665b4 100644
--- a/c++-qt/src/integer.cpp
+++ b/c++-qt/src/integer.cpp
@@ -32,10 +32,15 @@ void Gats::Integer::write( QIODevice &rOut ) const
32 writePackedInt( rOut, iVal ); 32 writePackedInt( rOut, iVal );
33} 33}
34 34
35void Gats::Integer::read( QIODevice &rIn, char cType ) 35void Gats::Integer::read( QIODevice &rIn, char /*cType*/ )
36{ 36{
37 readPackedInt( rIn, iVal ); 37 readPackedInt( rIn, iVal );
38} 38}
39
40QString Gats::Integer::toString( int /*iIndent*/ ) const
41{
42 return QString("%1").arg( iVal );
43}
39/* 44/*
40Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Integer &i ) 45Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Integer &i )
41{ 46{