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

(-)katoob-0.3.5-orig/src/katoobdocument.c (+4 lines)
Lines 2836-2845 Link Here
2836
					 (GTK_TEXT_VIEW
2836
					 (GTK_TEXT_VIEW
2837
					  (doc->priv->textview)->buffer),
2837
					  (doc->priv->textview)->buffer),
2838
					 FALSE);
2838
					 FALSE);
2839
#ifdef HAVE_SPELL
2839
	if (config->spell_check)
2840
	if (config->spell_check)
2840
	  {
2841
	  {
2841
	    katoob_document_enable_spell_checker (doc);
2842
	    katoob_document_enable_spell_checker (doc);
2842
	  }
2843
	  }
2844
#endif
2843
2845
2844
	katoob_document_set_bidi (doc, config->text_dir);
2846
	katoob_document_set_bidi (doc, config->text_dir);
2845
	return;
2847
	return;
Lines 3027-3033 Link Here
3027
	break;
3029
	break;
3028
      }
3030
      }
3029
    }
3031
    }
3032
#ifdef HAVE_SPELL
3030
  katoob_document_disable_spell_checker (doc);
3033
  katoob_document_disable_spell_checker (doc);
3034
#endif
3031
  katoob_document_set_bidi (doc, KATOOB_BIDI_LTR);
3035
  katoob_document_set_bidi (doc, KATOOB_BIDI_LTR);
3032
}
3036
}
3033
3037
(-)katoob-0.3.5-orig/src/Makefile.in (-4 / +4 lines)
Lines 134-144 Link Here
134
EXTRA_DIST = katoobmarshalers.list
134
EXTRA_DIST = katoobmarshalers.list
135
135
136
bin_PROGRAMS = katoob
136
bin_PROGRAMS = katoob
137
INCLUDES = $(SPELL_CFLAGS) $(KATOOB_CFLAGS) $(HIGHLIGHT_CFLAGS) -I./fribidi/ \
137
INCLUDES = $(PANGOFT2_CFLAGS) $(SPELL_CFLAGS) $(KATOOB_CFLAGS) \
138
		$(PANGOFT2_CFLAGS)
138
		$(HIGHLIGHT_CFLAGS) -I./fribidi/
139
139
140
katoob_LDADD = -L./fribidi -lfribidi $(SPELL_LIBS) $(KATOOB_LIBS) \
140
katoob_LDADD = -L./fribidi -lfribidi $(PANGOFT2_LIBS) $(SPELL_LIBS) \
141
		$(PANGOFT2_LIBS) $(HIGHLIGHT_LIBS) $(spell_cxx)
141
		$(KATOOB_LIBS) $(HIGHLIGHT_LIBS) $(spell_cxx)
142
142
143
143
144
katoob_DEPENDENCIES = fribidi/libfribidi.la
144
katoob_DEPENDENCIES = fribidi/libfribidi.la

Return to bug 27654