diff options
Diffstat (limited to 'tderesources')
-rw-r--r-- | tderesources/Makefile.am | 4 | ||||
-rw-r--r-- | tderesources/README.design | 4 | ||||
-rw-r--r-- | tderesources/resource.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/tderesources/Makefile.am b/tderesources/Makefile.am index fb7040ef5..252e29be4 100644 --- a/tderesources/Makefile.am +++ b/tderesources/Makefile.am @@ -15,7 +15,7 @@ libtderesources_la_SOURCES = resource.cpp \ configpage.cpp libtderesources_la_LDFLAGS = $(all_libraries) -no-undefined -version-info 3:0:2 -libtderesources_la_LIBADD = $(LIB_TDEUI) $(LIB_KIO) $(LIB_QT) $(top_builddir)/dcop/libDCOP.la $(LIB_TDECORE) +libtderesources_la_LIBADD = $(LIB_TDEUI) $(LIB_TDEIO) $(LIB_QT) $(top_builddir)/dcop/libDCOP.la $(LIB_TDECORE) kresincludedir = $(includedir)/tderesources kresinclude_HEADERS = resource.h \ @@ -37,7 +37,7 @@ kcm_tderesources_la_LIBADD = libtderesources.la $(LIB_QT) $(LIB_TDEUI) $(LIB_TDE check_PROGRAMS = testresources -testresources_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testresources_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testresources_LDADD = libtderesources.la testresources_SOURCES = testresources.cpp diff --git a/tderesources/README.design b/tderesources/README.design index d1fa62b91..9de49e718 100644 --- a/tderesources/README.design +++ b/tderesources/README.design @@ -25,7 +25,7 @@ Types: local Exchange file dir ldap ... Resource families are usually implemented as (abstract) classes in a library, e.g. the calendar resource in libkcal en the -addressbook resource family in libkabc. Resource type are like +addressbook resource family in libtdeabc. Resource type are like plugins: that can be loaded on-demand, they are implemented in their own library, and a .desktop file tells KDE where to find them. @@ -168,6 +168,6 @@ mechanism, like SQL locks, or file locks, or whatever. - Maybe the resource class should have some generic support for searching. In the calendar family, you could search by -date, by category or by key word, in the kabc family you +date, by category or by key word, in the tdeabc family you could search by key word, name, country, etc. diff --git a/tderesources/resource.h b/tderesources/resource.h index b7e4eeedc..5c05ea4e0 100644 --- a/tderesources/resource.h +++ b/tderesources/resource.h @@ -39,7 +39,7 @@ class ConfigWidget; The KDE Resource framework can be used to manage resources of different types, organized in families. The Resource framework - is for example used for addressbook resources in libkabc and for + is for example used for addressbook resources in libtdeabc and for calendar resources in libkcal. When you want to use the framework for a new family, you need to |