John Spray <[EMAIL PROTECTED]> writes:

| Index: GSpellchecker.C
| ===================================================================
| RCS file: GSpellchecker.C
| diff -N GSpellchecker.C
| --- /dev/null 1 Jan 1970 00:00:00 -0000
| +++ GSpellchecker.C   5 Oct 2004 19:36:34 -0000
| +void GSpellchecker::partialUpdate(int s)
| +{
...
| +     int progress = controller().getProgress();

const it?


| +     if (progress != 0) {
| +             progress_->set_fraction(float(progress)/100.0f);
| +             progress_->set_text(tostr(progress) + "% " + _("checked"));
| +     }
| +}
| +
| +
| +void GSpellchecker::onSuggestionActivate(
| +     const Gtk::TreeModel::Path & path,

move const
     Gtk::TreeModel::Path const & path

| +void GSpellchecker::onReplace(bool all)
| +{
| +     Glib::ustring replacement = replacemententry_->get_text();

const it?

| Index: GSpellchecker.h
| ===================================================================
| RCS file: GSpellchecker.h
| diff -N GSpellchecker.h
| --- /dev/null 1 Jan 1970 00:00:00 -0000
| +++ GSpellchecker.h   5 Oct 2004 19:36:34 -0000
| +     void onSuggestionActivate(const Gtk::TreeModel::Path & path,
| Gtk::TreeViewColumn * col);

move const

Apart from this, ok.

-- 
        Lgb

Reply via email to