summaryrefslogtreecommitdiffstats
path: root/src/app/main.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:19:13 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:19:13 -0600
commite9654e1a22ff355962fd97168f051336b814f4aa (patch)
tree582143becafd97ee1028fc88fa7a73a43f2d0680 /src/app/main.cpp
parentf7fb2eae5da8b6f314574c0258756bfc0dd3c9b9 (diff)
downloadgwenview-e9654e1a22ff355962fd97168f051336b814f4aa.tar.gz
gwenview-e9654e1a22ff355962fd97168f051336b814f4aa.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/app/main.cpp')
-rw-r--r--src/app/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp
index b6734ab..038c5c3 100644
--- a/src/app/main.cpp
+++ b/src/app/main.cpp
@@ -78,7 +78,7 @@ void applyFilterArgs(TDECmdLineArgs* args, FileViewController* controller) {
bool ok = false;
TQDate date;
if (!filterFrom.isEmpty()) {
- date = KGlobal::locale()->readDate(filterFrom, &ok);
+ date = TDEGlobal::locale()->readDate(filterFrom, &ok);
if (!ok) {
kdWarning() << "Invalid value for filter-from option\n";
}
@@ -87,7 +87,7 @@ void applyFilterArgs(TDECmdLineArgs* args, FileViewController* controller) {
date=TQDate();
if (!filterTo.isEmpty()) {
- date = KGlobal::locale()->readDate(filterTo, &ok);
+ date = TDEGlobal::locale()->readDate(filterTo, &ok);
if (!ok) {
kdWarning() << "Invalid value for filter-to option\n";
}