diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-05-11 18:10:52 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-05-11 18:10:52 -0400 |
commit | 1430657bc04f6f37b3067b632ffb22e4bed19cb9 (patch) | |
tree | 227520bbdbd4710144ee964296f0fa0d3df52377 | |
parent | 3fbae23756517d1f6e78bb7e0b43db8ace6fe3c7 (diff) |
return type as the 2nd template argument.
-rw-r--r-- | sc/source/core/data/dpobject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/dpobject.cxx b/sc/source/core/data/dpobject.cxx index 85f02e2c4..d3c778ad3 100644 --- a/sc/source/core/data/dpobject.cxx +++ b/sc/source/core/data/dpobject.cxx @@ -2556,7 +2556,7 @@ namespace { /** * Unary predicate to match DP objects by the table ID. */ -class MatchByTable : public unary_function<bool, ScDPObject> +class MatchByTable : public unary_function<ScDPObject, bool> { SCTAB mnTab; public: |