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

(-)a/configdialog.cpp (-1 / +1 lines)
Lines 222-228 void ConfigDialog::browseAspell() Link Here
222
QDir spelldir(QCoreApplication::applicationDirPath());
222
QDir spelldir(QCoreApplication::applicationDirPath());
223
#else
223
#else
224
#ifdef DEBIAN_SPELLDIR
224
#ifdef DEBIAN_SPELLDIR
225
QDir spelldir(PREFIX"/share/myspell/dicts");
225
QDir spelldir(PREFIX"/share/myspell");
226
#else
226
#else
227
QDir spelldir(PREFIX"/share/texmaker");
227
QDir spelldir(PREFIX"/share/texmaker");
228
#endif
228
#endif
(-)a/texmaker.cpp (-1 / +1 lines)
Lines 2787-2793 if (hasDecodingError) Link Here
2787
QString dicDir=QCoreApplication::applicationDirPath() + "/";
2787
QString dicDir=QCoreApplication::applicationDirPath() + "/";
2788
#else
2788
#else
2789
#ifdef DEBIAN_SPELLDIR
2789
#ifdef DEBIAN_SPELLDIR
2790
QString dicDir=PREFIX"/share/myspell/dicts/";
2790
QString dicDir=PREFIX"/share/myspell/";
2791
#else
2791
#else
2792
QString dicDir=PREFIX"/share/texmaker/";
2792
QString dicDir=PREFIX"/share/texmaker/";
2793
#endif
2793
#endif
(-)a/texmaker.pro (-41 / +1 lines)
Lines 98-126 HEADERS += texmaker.h \ Link Here
98
	unicodeview.h \
98
	unicodeview.h \
99
	quickbeamerdialog.h \
99
	quickbeamerdialog.h \
100
	svnhelper.h \
100
	svnhelper.h \
101
	hunspell/affentry.hxx \
102
	hunspell/affixmgr.hxx \
103
	hunspell/atypes.hxx \
104
	hunspell/baseaffix.hxx \
105
	hunspell/csutil.hxx \
106
	hunspell/dictmgr.hxx \
107
	hunspell/hashmgr.hxx \
108
	hunspell/htypes.hxx \
109
	hunspell/hunspell.hxx \
110
	hunspell/hunspell.h \
111
	hunspell/langnum.hxx \
112
	hunspell/license.hunspell \
113
	hunspell/phonet.hxx \
114
	hunspell/suggestmgr.hxx \
115
	hunspell/license.myspell \
116
	hunspell/filemgr.hxx \
117
	hunspell/hunzip.hxx \
118
	hunspell/replist.hxx \
119
	hunspell/w_char.hxx \
120
	singleapp/qtlocalpeer.h \
121
	singleapp/qtlockedfile.h \
122
	singleapp/qtsingleapplication.h \
123
	singleapp/qtsinglecoreapplication.h \
124
	encodingprober/CharDistribution.h \
101
	encodingprober/CharDistribution.h \
125
	encodingprober/ChineseGroupProber.h \
102
	encodingprober/ChineseGroupProber.h \
126
	encodingprober/ctype_test_p.h \
103
	encodingprober/ctype_test_p.h \
Lines 210-231 SOURCES += main.cpp \ Link Here
210
	unicodeview.cpp \
187
	unicodeview.cpp \
211
	quickbeamerdialog.cpp \
188
	quickbeamerdialog.cpp \
212
	svnhelper.cpp \
189
	svnhelper.cpp \
213
	hunspell/affentry.cxx \
214
	hunspell/affixmgr.cxx \
215
	hunspell/csutil.cxx \
216
	hunspell/dictmgr.cxx \
217
	hunspell/hashmgr.cxx \
218
	hunspell/hunspell.cxx \
219
	hunspell/phonet.cxx \
220
	hunspell/suggestmgr.cxx \
221
	hunspell/utf_info.cxx \
222
	hunspell/filemgr.cxx \
223
	hunspell/replist.cxx \
224
	hunspell/hunzip.cxx \
225
	singleapp/qtlocalpeer.cpp \
226
	singleapp/qtlockedfile.cpp \
227
	singleapp/qtsingleapplication.cpp \
228
	singleapp/qtsinglecoreapplication.cpp \
229
	encodingprober/CharDistribution.cpp \
190
	encodingprober/CharDistribution.cpp \
230
	encodingprober/ChineseGroupProber.cpp \
191
	encodingprober/ChineseGroupProber.cpp \
231
	encodingprober/JapaneseGroupProber.cpp \
192
	encodingprober/JapaneseGroupProber.cpp \
Lines 336-343 icon.path = $${ICONDIR} Link Here
336
297
337
INSTALLS = target
298
INSTALLS = target
338
HEADERS	+= x11fontdialog.h 
299
HEADERS	+= x11fontdialog.h 
339
SOURCES	+= x11fontdialog.cpp \
300
SOURCES	+= x11fontdialog.cpp 
340
	  singleapp/qtlockedfile_unix.cpp
341
FORMS += x11fontdialog.ui
301
FORMS += x11fontdialog.ui
342
302
343
utilities.files = doc/doc1.png \
303
utilities.files = doc/doc1.png \

Return to bug 566790