diff options
author | gregory guy <[email protected]> | 2020-02-25 15:05:47 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-04-10 12:18:17 +0200 |
commit | d175607a268b6cc9dfeaeff1d0a38cf72201ad84 (patch) | |
tree | 8470c145bf445240579d92d8e67a14bafb117941 /src/main.cpp | |
parent | 0d9e78994bc2866af215f5a76e8134a17ad79516 (diff) | |
download | basket-d175607a268b6cc9dfeaeff1d0a38cf72201ad84.tar.gz basket-d175607a268b6cc9dfeaeff1d0a38cf72201ad84.zip |
Fix support for GCC hidden visibility.
Signed-off-by: gregory guy <[email protected]>
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index f5f8441..336eb53 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,6 +18,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdlib.h> #include <tdecmdlineargs.h> @@ -46,10 +50,6 @@ #include "basket_options.h" #include "backup.h" -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - /* Thanks to JuK for this Application class */ /*#if KDE_IS_VERSION( 3, 1, 90 ) typedef KUniqueApplication Application; // KDE 3.2 and later already re-show the main window |