summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl/tests/google/main.cc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-15 11:30:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-15 23:05:24 +0900
commit4bd4ac21f11fdb5b76ffda985397398102a81e9b (patch)
tree61b0afd406a0d7554ed4fa85413a53c63f3e2324 /kode/kwsdl/tests/google/main.cc
parent53a24d5c1f80c64dbd28825b546748a3ae36049e (diff)
downloadtdepim-4bd4ac21f11fdb5b76ffda985397398102a81e9b.tar.gz
tdepim-4bd4ac21f11fdb5b76ffda985397398102a81e9b.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 3a75bdfe83b71ef1dbc2fbf52f2d18b8174e22e5)
Diffstat (limited to 'kode/kwsdl/tests/google/main.cc')
-rw-r--r--kode/kwsdl/tests/google/main.cc23
1 files changed, 0 insertions, 23 deletions
diff --git a/kode/kwsdl/tests/google/main.cc b/kode/kwsdl/tests/google/main.cc
deleted file mode 100644
index 38c645940..000000000
--- a/kode/kwsdl/tests/google/main.cc
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <tdeaboutdata.h>
-#include <tdeapplication.h>
-#include <tdecmdlineargs.h>
-#include <kmdcodec.h>
-
-#include "googlesearch.hh"
-
-int main( int argc, char **argv )
-{
- TDEAboutData aboutData( "kgooglesearch", "TDE Google Search", "0.1", "", TDEAboutData::License_GPL );
- aboutData.addAuthor( "Tobias Koenig", 0, "tokoe@kde.org" );
-
- TDECmdLineArgs::init( argc, argv, &aboutData );
-
- TDEApplication app( false, false );
-
- GoogleSearch search;
-
- search.googleSearch( "foobar", 0, 10, true, "", false, "", "latin1", "latin1" );
- search.spellingSuggestion( "guugel" );
-
- return app.exec();
-}