~ubuntu-branches/ubuntu/quantal/texmacs/quantal

« back to all changes in this revision

Viewing changes to src/Plugins/X11/x_window.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2010-04-23 07:09:40 UTC
  • mfrom: (1.2.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20100423070940-juy8n05xs1b6au8i
Re-upload, former upload failed with wrong diff.gz perhaps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
468
468
message::message (widget wid, string s, time_t t):
469
469
  rep (tm_new<message_rep> (wid, s, t)) {}
470
470
 
471
 
ostream&
472
 
operator << (ostream& out, message m) {
 
471
tm_ostream&
 
472
operator << (tm_ostream& out, message m) {
473
473
  return out << "message " << m->s << " to " << m->wid
474
474
             << "at time " << m->t << "\n";
475
475
}