diff options
author | Michele Calgaro <[email protected]> | 2023-11-04 23:08:03 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 20:33:51 +0900 |
commit | 1172d1f64cfe6adbb35b1f31363ef25b0d1de9f5 (patch) | |
tree | c3740dbabf2e4fa9a9d54327430b7e451797e1d3 /src/main.cpp | |
parent | 1cf53c1d53e516c56d46c90e1d63810451cfbdb9 (diff) | |
download | kvpnc-1172d1f64cfe6adbb35b1f31363ef25b0d1de9f5.tar.gz kvpnc-1172d1f64cfe6adbb35b1f31363ef25b0d1de9f5.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 45065b5c5e1dbc25db326bdbe086a0f42dbda5a9)
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 729dead..bfa6cc5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -33,10 +33,10 @@ #include "kvpnc.h" static const char *description = I18N_NOOP ( "TDE frontend for various vpn clients\nCurrently supported protocols:\n* Cisco (vpnc (free), vpnclient (propritary))\n* IPSec (FreeS/WAN, Openswan, strongSwan, racoon)\n* PPTP\n* OpenVPN\n* L2TP (l2tpd, xl2tpd, openl2tp) over IPSec (racoon, FreeS/WAN, Openswan, strongSwan)\n* Vtun\n* SSH" ); -// TQDate().fromString(, Qt::LocalDate ).toString( "yyyyMMdd" ) +// TQDate().fromString(, TQt::LocalDate ).toString( "yyyyMMdd" ) TQString date ( __DATE__ ); TQString day= date.section ( ' ',0,0 ); -TQString month= TQString().setNum ( TQDate::fromString ( date.section ( ' ',0,0 ),Qt::ISODate ).month() ); +TQString month= TQString().setNum ( TQDate::fromString ( date.section ( ' ',0,0 ),TQt::ISODate ).month() ); TQString year= date.section ( ' ',2,2 ); TQString currentdate ( "+SVN(" + date+" "+ TQTime().fromString ( TQString ( __TIME__ ) ).toString ( "hhmm" ) + ")" ); |