Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 87721
Collapse All | Expand All

(-)src/ps/pfb2pfa.cc (-1 / +1 lines)
Lines 48-54 void PS::pfb2pfa(std::istream &in, std:: Link Here
48
	}
48
	}
49
	filter.end();
49
	filter.end();
50
      }
50
      }
51
      if(lengths) lengths->push_back(out.tellp() - blockstart);
51
      if(lengths) lengths->push_back((long)(out.tellp()) - blockstart);
52
      debug << "Blockstart: " << blockstart << ", end: " << out.tellp()
52
      debug << "Blockstart: " << blockstart << ", end: " << out.tellp()
53
	    << "\n";
53
	    << "\n";
54
    }
54
    }
(-)src/util/valueunit.h (+4 lines)
Lines 6-11 Link Here
6
#include "stringutil.h"
6
#include "stringutil.h"
7
#include <string>
7
#include <string>
8
8
9
template <class Value> class ValueUnit;
10
template <class Value> std::istream& operator>> (std::istream& in, 
11
		ValueUnit<Value>& vu);
12
9
template<class Value>
13
template<class Value>
10
class ValueUnit {
14
class ValueUnit {
11
public:
15
public:
(-)src/pptout/widget/dialogwrap.cc (-2 / +2 lines)
Lines 23-31 Gtk::Button* DialogWrap::fix_button(Gtk: Link Here
23
  Gtk::Button *b = manage(button);
23
  Gtk::Button *b = manage(button);
24
  // Note: It seems that activate means "in any way except a simple click".
24
  // Note: It seems that activate means "in any way except a simple click".
25
  // So we have to add callbacks for both activate and clicked.
25
  // So we have to add callbacks for both activate and clicked.
26
  b->signal_clicked().connect(bind(slot(*this, &Gtk::Dialog::on_response),
26
  b->signal_clicked().connect(bind(slot(*this, &DialogWrap::on_response),
27
				   action_id));
27
				   action_id));
28
  b->signal_activate().connect(bind(slot(*this, &Gtk::Dialog::on_response),
28
  b->signal_activate().connect(bind(slot(*this, &DialogWrap::on_response),
29
				    action_id));
29
				    action_id));
30
  return b;
30
  return b;
31
}
31
}
(-)src/pptout/aboutdialog.cc (-2 / +2 lines)
Lines 61-69 AboutDialog::AboutDialog() Link Here
61
  webpage->set_relief(Gtk::RELIEF_NONE);
61
  webpage->set_relief(Gtk::RELIEF_NONE);
62
  webpage->set_border_width(0);
62
  webpage->set_border_width(0);
63
  webpage->signal_clicked().connect
63
  webpage->signal_clicked().connect
64
    (bind(slot(*this, &AboutDialog::on_response), OPEN_WEBPAGE));
64
    (bind(slot(*this, &AboutDialog::on_response), (int) OPEN_WEBPAGE));
65
  webpage->signal_activate().connect
65
  webpage->signal_activate().connect
66
    (bind(slot(*this, &AboutDialog::on_response), OPEN_WEBPAGE));
66
    (bind(slot(*this, &AboutDialog::on_response), (int) OPEN_WEBPAGE));
67
  message->pack_start(*webpage, Gtk::PACK_SHRINK);
67
  message->pack_start(*webpage, Gtk::PACK_SHRINK);
68
68
69
  label =
69
  label =

Return to bug 87721