Remove ancient/unused flowcanvas and libglademm from repository.

Update libraries to latest stable released version (except gnomecanvasmm, which is strangely packaged...).
Fixes building (at least here).


git-svn-id: svn://localhost/ardour2/trunk@2790 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2007-12-18 06:05:55 +00:00
parent 0e31c56591
commit 35fc31a1de
1550 changed files with 362440 additions and 73136 deletions

View file

@ -2,7 +2,7 @@
#ifndef _GLIBMM_USTRING_H
#define _GLIBMM_USTRING_H
/* $Id: ustring.h,v 1.15 2006/09/19 20:48:15 murrayc Exp $ */
/* $Id: ustring.h 369 2007-01-20 10:19:33Z daniel $ */
/* Copyright (C) 2002 The gtkmm Development Team
*
@ -729,7 +729,7 @@ const ustring_Iterator<T> ustring_Iterator<T>::operator++(int)
template <class T> inline
ustring_Iterator<T>& ustring_Iterator<T>::operator--()
{
do --pos_; while((*pos_ & '\xC0') == '\x80');
do --pos_; while((static_cast<unsigned char>(*pos_) & 0xC0u) == 0x80);
return *this;
}