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

« back to all changes in this revision

Viewing changes to src/Plugins/Widkit/Basic/widkit_wrapper.cpp

  • 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:
45
45
  promise<wk_widget> p;
46
46
public:
47
47
  abstract_promise_rep (promise<wk_widget> p2): p (p2) {}
48
 
  ostream& print (ostream& out) { return out << p; }
 
48
  tm_ostream& print (tm_ostream& out) { return out << p; }
49
49
  widget eval () { return abstract (p ()); }
50
50
};
51
51
 
58
58
  promise<widget> p;
59
59
public:
60
60
  concrete_promise_rep (promise<widget> p2): p (p2) {}
61
 
  ostream& print (ostream& out) { return out << p; }
 
61
  tm_ostream& print (tm_ostream& out) { return out << p; }
62
62
  wk_widget eval () { return concrete (p ()); }
63
63
};
64
64