From: root Date: Sun, 30 May 2004 19:12:42 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=6987171e50c65dc2e8afa824ed181bac9cd52f2c;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/doc/yodl/versioninfo.yo b/doc/yodl/versioninfo.yo index abb0db91..8b87eca5 100644 --- a/doc/yodl/versioninfo.yo +++ b/doc/yodl/versioninfo.yo @@ -1,10 +1,10 @@ -COMMENT(-- $Id: versioninfo.yo,v 1.14 2004-05-08 17:18:21 pcg Exp $ --) +COMMENT(-- $Id: versioninfo.yo,v 1.15 2004-05-30 19:12:42 root Exp $ --) DEFINEMACRO(RXVTNAME)(0) (rxvt) DEFINEMACRO(RXVTDATE)(0) - (2004-05-08) + (2004-05-10) DEFINEMACRO(RXVTVERSION)(0) - (2.9) + (3.0) DEFINEMACRO(RXVTMAINT)(0) (Marc A. Lehmann) DEFINEMACRO(RXVTMAINTEMAIL)(0) diff --git a/src/iom.h b/src/iom.h index 61065470..ef7028f6 100644 --- a/src/iom.h +++ b/src/iom.h @@ -72,10 +72,10 @@ struct io_manager_vec : vector { void erase_unordered (unsigned int pos) { - watcher *w = (*this)[size () - 1]; - pop_back (); + watcher *w = (*this)[this->size () - 1]; + this->pop_back (); - if (size ()) + if (this->size ()) if ((*this)[pos] = w) w->active = pos + 1; } diff --git a/src/rxvtcolor.C b/src/rxvtcolor.C index 596423c7..92bfa42b 100644 --- a/src/rxvtcolor.C +++ b/src/rxvtcolor.C @@ -57,7 +57,7 @@ refcounted::~refcounted () template T *refcache::get (const char *id) { - for (T **i = begin (); i < end (); ++i) + for (T **i = this->begin (); i < this->end (); ++i) { if (!strcmp (id, (*i)->id)) { @@ -72,7 +72,7 @@ T *refcache::get (const char *id) if (obj && obj->init ()) { - push_back (obj); + this->push_back (obj); return obj; } else @@ -90,7 +90,7 @@ void refcache::put (T *obj) if (!--obj->referenced) { - erase (find (begin (), end (), obj)); + this->erase (find (this->begin (), this->end (), obj)); delete obj; } } @@ -98,8 +98,8 @@ void refcache::put (T *obj) template refcache::~refcache () { - while (size ()) - put (*begin ()); + while (this->size ()) + put (*this->begin ()); } ///////////////////////////////////////////////////////////////////////////// @@ -309,7 +309,7 @@ Atom rxvt_display::atom (const char *name) ///////////////////////////////////////////////////////////////////////////// -template refcache; +template class refcache; refcache displays; /////////////////////////////////////////////////////////////////////////////