diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:48 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:48 -0600 |
commit | 6fdacb9c2e3adb3b5da38cd8a22afc1668e1d36b (patch) | |
tree | a6a367ba18807833d8f90cb6b233e7bdb3f007cc /kfloppy | |
parent | ba743d360eabb06e6ffbafd2c7bc833dd985aa0c (diff) | |
download | tdeutils-6fdacb9c2e3adb3b5da38cd8a22afc1668e1d36b.tar.gz tdeutils-6fdacb9c2e3adb3b5da38cd8a22afc1668e1d36b.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kfloppy')
-rw-r--r-- | kfloppy/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kfloppy/main.cpp b/kfloppy/main.cpp index c17fb2b..749cb65 100644 --- a/kfloppy/main.cpp +++ b/kfloppy/main.cpp @@ -56,10 +56,10 @@ int main( int argc, char *argv[] ) aboutData.addCredit("Adriaan de Groot", I18N_NOOP("Add BSD support"), "groot@kde.org"); aboutData.addCredit("Nicolas Goutte", I18N_NOOP("Make KFloppy work again for KDE 3.4"), "goutte@kde.org"); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); TQString device; if (args->count()) { device = args->arg(0); |