diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-09-03 19:56:32 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-09-03 19:56:32 +0200 |
commit | 0bfcc16156eefad3c5a9b258433f2c538d3c448d (patch) | |
tree | 62aebba231dae57c32dadf3d7069bd052846ff2b /src/app | |
parent | e9172f4d91b213c5a1da95405b2605eea86a388a (diff) | |
download | gwenview-0bfcc16156eefad3c5a9b258433f2c538d3c448d.tar.gz gwenview-0bfcc16156eefad3c5a9b258433f2c538d3c448d.zip |
Additional k => tde renaming and fixes
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/Makefile.am | 4 | ||||
-rw-r--r-- | src/app/mainwindow.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/app/Makefile.am b/src/app/Makefile.am index 68db340..8babb28 100644 --- a/src/app/Makefile.am +++ b/src/app/Makefile.am @@ -32,7 +32,7 @@ gwenview_la_SOURCES = \ history.cpp \ main.cpp -gwenview_la_LIBADD = libgwenshared.la ../gvcore/libgwenviewcore.la $(GV_LIB_KIPI) $(LIB_KUTILS) $(LIB_QT) +gwenview_la_LIBADD = libgwenshared.la ../gvcore/libgwenviewcore.la $(GV_LIB_KIPI) $(LIB_TDEUTILS) $(LIB_QT) # the library search path. gwenview_la_LDFLAGS = $(all_libraries) $(LIB_QT) -module $(KDE_PLUGIN) @@ -51,6 +51,6 @@ check_PROGRAMS = testvtabwidget testvtabwidget_SOURCES = testvtabwidget.cpp testvtabwidget_LDADD = \ libgwenshared.la \ - $(LIB_KUTILS) $(LIB_TDEFILE) $(LIB_TDEUI) $(LIB_TDECORE) $(LIB_TDEPRINT) $(LIB_QT) \ + $(LIB_TDEUTILS) $(LIB_TDEFILE) $(LIB_TDEUI) $(LIB_TDECORE) $(LIB_TDEPRINT) $(LIB_QT) \ $(LIBJPEG) testvtabwidget_LDFLAGS = $(all_libraries) $(LIB_QT) diff --git a/src/app/mainwindow.cpp b/src/app/mainwindow.cpp index f61d799..d21a265 100644 --- a/src/app/mainwindow.cpp +++ b/src/app/mainwindow.cpp @@ -141,7 +141,7 @@ enum { StackIDBrowse, StackIDView }; static bool urlIsDirectory(TQWidget* parent, const KURL& url) { if( url.filename( false ).isEmpty()) return true; // file:/somewhere/<nothing here> - // Do direct stat instead of using KIO if the file is local (faster) + // Do direct stat instead of using TDEIO if the file is local (faster) if( url.isLocalFile() && !TDEIO::probably_slow_mounted( url.path())) { KDE_struct_stat buff; |