diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-11-04 16:19:54 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-11-04 16:19:54 +0100 |
commit | ad148587dcf5244c2d2011dba339786c765c54c4 (patch) | |
tree | bdd914121cd326da2ed26679838878e3edffc841 /src/porting_android.h | |
parent | 1145b05ea0bda87dc0827821385810eced08f774 (diff) | |
download | dragonfireclient-ad148587dcf5244c2d2011dba339786c765c54c4.tar.xz |
Make Lint Happy
Diffstat (limited to 'src/porting_android.h')
-rw-r--r-- | src/porting_android.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/porting_android.h b/src/porting_android.h index 6eb054041..da78379b4 100644 --- a/src/porting_android.h +++ b/src/porting_android.h @@ -29,7 +29,8 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <string> -namespace porting { +namespace porting +{ // java app extern android_app *app_global; @@ -55,8 +56,8 @@ void initializePathsAndroid(); * @param editType type of texfield * (1==multiline text input; 2==single line text input; 3=password field) */ -void showInputDialog(const std::string &acceptButton, - const std::string &hint, const std::string ¤t, int editType); +void showInputDialog(const std::string &acceptButton, const std::string &hint, + const std::string ¤t, int editType); void openURLAndroid(const std::string &url); |