fixes missing header to avoid missing declarations (mipspro)
This commit is contained in:
parent
d51d01cc49
commit
0d7f757c2c
1 changed files with 11 additions and 9 deletions
|
@ -19,7 +19,7 @@
|
|||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// $Id: ThemeItems.hh,v 1.8 2004/08/31 15:26:39 rathnor Exp $
|
||||
// $Id: ThemeItems.hh,v 1.9 2004/10/21 10:29:49 akir Exp $
|
||||
|
||||
/// @file implements common theme items
|
||||
|
||||
|
@ -32,6 +32,7 @@
|
|||
#include "Font.hh"
|
||||
#include "PixmapWithMask.hh"
|
||||
#include "Image.hh"
|
||||
#include "StringUtil.hh"
|
||||
|
||||
#include <string>
|
||||
#ifdef HAVE_CSTDIO
|
||||
|
@ -61,7 +62,7 @@ void FbTk::ThemeItem<std::string>::setFromString(const char *str) {
|
|||
template <>
|
||||
void FbTk::ThemeItem<int>::load(const std::string *name, const std::string *altname) { }
|
||||
|
||||
template <>
|
||||
template<>
|
||||
void FbTk::ThemeItem<int>::setDefaultValue() {
|
||||
*(*this) = 0;
|
||||
}
|
||||
|
@ -205,6 +206,7 @@ setFromString(const char *str) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
template <>
|
||||
void ThemeItem<FbTk::Color>::setDefaultValue() {
|
||||
m_value.setFromString("white", m_tm.screenNum());
|
||||
|
|
Loading…
Reference in a new issue