diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-04-11 21:28:27 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-07 11:02:45 +0900 |
| commit | ce951906931f1be93caf66d7486990a21c68b34c (patch) | |
| tree | eb2a29b1ba059f0de0d4144057fdac2a35fdb0a6 /src/common/global/about.cpp | |
| parent | 8bdcbe0178113223e2f40a0eb9eb01b0a866b3bd (diff) | |
| download | piklab-ce951906.tar.gz piklab-ce951906.zip | |
Remove obsolete svn-related logic
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 29c582cab07611e35eff64598f5877911c96c2ea)
Diffstat (limited to 'src/common/global/about.cpp')
| -rw-r--r-- | src/common/global/about.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/common/global/about.cpp b/src/common/global/about.cpp index 5f1942f..6dc0b80 100644 --- a/src/common/global/about.cpp +++ b/src/common/global/about.cpp @@ -8,12 +8,6 @@ ***************************************************************************/ #include "about.h" -#if defined(TQ_WS_WIN) -# define SVN_REVISION "windows" -#else -# include "svn_revision/svn_revision.h" -#endif - //--------------------------------------------------------------------------- const char * const Piklab::URLS[Nb_UrlTypes] = { "http://piklab.sourceforge.net", @@ -48,12 +42,12 @@ void Piklab::init(TDEAboutData *about, int argc, char **argv, bool gui, const TD # if defined(Q_OS_WIN) printf("%s \"win32\": version %s\n", about->appName(), VERSION); # else - printf("%s \"tqt-only\": version %s (rev. %s)\n", about->appName(), VERSION, SVN_REVISION); + printf("%s \"tqt-only\": version %s\n", about->appName(), VERSION); # endif Q_UNUSED(gui); Q_ASSERT( !gui ); #else - printf("%s: version %s (rev. %s)\n", about->appName(), VERSION, SVN_REVISION); + printf("%s: version %s\n", about->appName(), VERSION); if ( !gui ) TDEApplication::disableAutoDcopRegistration(); #endif TDECmdLineArgs::init(argc, argv, about); |
