aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/list
diff options
context:
space:
mode:
authorGravatar Fabio Bas2011-08-21 21:13:58 +0000
committerGravatar Fabio Bas2011-08-21 21:13:58 +0000
commitbb2b8e60f2c6198fe0c1e44aaed1542ebed01a53 (patch)
tree5cc8861efb623162e41f9dbded8548d3dce67c3b /src/modules/list
parentfix for #1202 (diff)
downloadKVIrc-bb2b8e60f2c6198fe0c1e44aaed1542ebed01a53.tar.gz
KVIrc-bb2b8e60f2c6198fe0c1e44aaed1542ebed01a53.tar.bz2
KVIrc-bb2b8e60f2c6198fe0c1e44aaed1542ebed01a53.zip
fixed parsing the date of some log files (#1188) + updated deprecated Qt::SystemLocaleDate
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5937 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/list')
-rw-r--r--src/modules/list/ListWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/list/ListWindow.cpp b/src/modules/list/ListWindow.cpp
index 6a936db6c..064482135 100644
--- a/src/modules/list/ListWindow.cpp
+++ b/src/modules/list/ListWindow.cpp
@@ -378,7 +378,7 @@ void ListWindow::exportList()
szDate = date.toString(Qt::ISODate);
break;
case 2:
- szDate = date.toString(Qt::SystemLocaleDate);
+ szDate = date.toString(Qt::SystemLocaleShortDate);
break;
}
szFile = QString(__tr2qs("Channel list for %1 - %2")).arg(connection()->currentNetworkName(),szDate);