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

« back to all changes in this revision

Viewing changes to src/Graphics/Gui/widget.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2010-04-23 07:09:40 UTC
  • mfrom: (4.1.8 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100423070940-72mjdmdepfgrvo8f
Tags: 1:1.0.7.4-2
Re-upload, former upload failed with wrong diff.gz perhaps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
public:
39
39
  widget_rep ();
40
40
  virtual ~widget_rep ();
41
 
  virtual ostream& print (ostream& out);
 
41
  virtual tm_ostream& print (tm_ostream& out);
42
42
 
43
43
  virtual void send (slot s, blackbox val);
44
44
    // send a message val to the slot s
66
66
};
67
67
ABSTRACT_NULL_CODE(widget);
68
68
 
69
 
inline ostream&
70
 
operator << (ostream& out, widget w) {
 
69
inline tm_ostream&
 
70
operator << (tm_ostream& out, widget w) {
71
71
  if (is_nil (w)) return out << "nil";
72
72
  else return w->print (out);
73
73
}