summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@src.gnome.org>2008-08-06 06:55:38 +0000
committerMurray Cumming <murrayc@src.gnome.org>2008-08-06 06:55:38 +0000
commit5b3a021b611c7290d273bdc29b44f1be3868c002 (patch)
tree069f32908d2043c1b90646842928b01aa69a1b2a
parentdc294f54929689477104ab7f0f2c42292703b84e (diff)
downloadglibmm-5b3a021b611c7290d273bdc29b44f1be3868c002.tar.gz
Whitespace corrections
svn path=/trunk/; revision=710
-rw-r--r--glib/glibmm/ustring.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/glib/glibmm/ustring.h b/glib/glibmm/ustring.h
index 2bab8aa2..63649f13 100644
--- a/glib/glibmm/ustring.h
+++ b/glib/glibmm/ustring.h
@@ -1240,7 +1240,7 @@ private:
public:
explicit inline Stringify(const T& arg) : string_ (ustring::format(arg)) {}
- explicit inline Stringify(const char* arg) : string_ (arg) {}
+ explicit inline Stringify(const char* arg) : string_(arg) {}
inline const ustring* ptr() const { return &string_; }
};
@@ -1255,7 +1255,7 @@ private:
Stringify<ustring>& operator=(const ustring::Stringify<ustring>&);
public:
- explicit inline Stringify(const ustring& arg) : string_ (arg) {}
+ explicit inline Stringify(const ustring& arg) : string_(arg) {}
inline const ustring* ptr() const { return &string_; }
};
@@ -1263,7 +1263,7 @@ template <class T1>
inline // static
ustring ustring::compose(const ustring& fmt, const T1& a1)
{
- const ustring::Stringify<T1> s1 (a1);
+ const ustring::Stringify<T1> s1(a1);
const ustring *const argv[] = { s1.ptr() };
return ustring::compose_argv(fmt, G_N_ELEMENTS(argv), argv);