diff options
author | Timothy Pearson <[email protected]> | 2013-01-19 18:46:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-19 18:46:30 -0600 |
commit | a200f22dde6af85d7888d619dd7c1196609f2144 (patch) | |
tree | 23505f8ea538d79f707e1c96ec272c181b4a110c /tests/testdatabase.cc | |
parent | bc1c842c6175df67e665d606c1c6c8e9cf51f3b1 (diff) | |
download | kpilot-a200f22dde6af85d7888d619dd7c1196609f2144.tar.gz kpilot-a200f22dde6af85d7888d619dd7c1196609f2144.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'tests/testdatabase.cc')
-rw-r--r-- | tests/testdatabase.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testdatabase.cc b/tests/testdatabase.cc index 02b43c6..36dce8f 100644 --- a/tests/testdatabase.cc +++ b/tests/testdatabase.cc @@ -256,12 +256,12 @@ int main(int argc, char **argv) KApplication::disableAutoDcopRegistration(); KAboutData aboutData("testdatabase","Test Databases","0.1"); - KCmdLineArgs::init(argc,argv,&aboutData); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc,argv,&aboutData); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app( false, false ); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); Q_UNUSED(args) |