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/password.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/password.cpp')
-rw-r--r-- | src/password.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/password.cpp b/src/password.cpp index 55e5c21..b13fc0d 100644 --- a/src/password.cpp +++ b/src/password.cpp @@ -18,7 +18,9 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include "password.h" +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #ifdef HAVE_LIBGPGME @@ -32,6 +34,8 @@ #include <kgpgme.h> #include <basket.h> +#include "password.h" + PasswordDlg::PasswordDlg(TQWidget *parent, const char *name) :KDialogBase(Plain, i18n("Password Protection"), Ok|Cancel, Ok, parent, name, /*modal=*/true, /*separator=*/true), w(0) |