Index: kadu/kadu-core/about.cpp
===================================================================
--- kadu.orig/kadu-core/about.cpp	2010-06-21 10:21:08.000000000 +0200
+++ kadu/kadu-core/about.cpp	2010-06-21 10:24:41.000000000 +0200
@@ -134,7 +134,7 @@
 	tb_changelog->setFrameStyle(QFrame::NoFrame);
 	tb_changelog->setWordWrapMode(QTextOption::NoWrap);
 	tb_changelog->viewport()->setAutoFillBackground(false);
-	tb_changelog->setText(loadFile("ChangeLog"));
+	tb_changelog->setText(loadFile("about-changes-tab.txt"));
 
 	// add tabs
 	tw_about->addTab(wb_about, tr("&About"));
@@ -191,7 +191,10 @@
 {
 	kdebugf();
 
-	QFile file(dataPath("kadu/" + name));
+	QString fullName = ("COPYING" == name ?
+			"/usr/share/common-licenses/GPL-2" :
+			"/usr/share/doc/kadu/" + name);
+	QFile file(fullName);
 	if (!file.open(QIODevice::ReadOnly))
 	{
 		kdebugm(KDEBUG_ERROR, "About::loadFile(%s) cannot open file\n", qPrintable(name));
