diff options
Diffstat (limited to 'src/m_gpg_info')
-rw-r--r-- | src/m_gpg_info/GnuPGInfoGatheringModule.cpp | 2 | ||||
-rw-r--r-- | src/m_gpg_info/GnupgTab.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/m_gpg_info/GnuPGInfoGatheringModule.cpp b/src/m_gpg_info/GnuPGInfoGatheringModule.cpp index e882d67..0d02df1 100644 --- a/src/m_gpg_info/GnuPGInfoGatheringModule.cpp +++ b/src/m_gpg_info/GnuPGInfoGatheringModule.cpp @@ -63,7 +63,7 @@ extern void GetGpgOptionInfos(void *, int, const char *, const char *); extern auto StartGatheringGnuPGInfo() -> int; -extern auto GnupgTabFactory(const char *id) -> void *; +extern auto GnupgTabFactory(void *id) -> void *; using Context = struct { QString gpgme_version; diff --git a/src/m_gpg_info/GnupgTab.cpp b/src/m_gpg_info/GnupgTab.cpp index 5123155..6548316 100644 --- a/src/m_gpg_info/GnupgTab.cpp +++ b/src/m_gpg_info/GnupgTab.cpp @@ -331,4 +331,4 @@ void GnupgTab::gather_gnupg_info() { } } -auto GnupgTabFactory(const char* id) -> void* { return new GnupgTab(); }
\ No newline at end of file +auto GnupgTabFactory(void*) -> void* { return new GnupgTab(); }
\ No newline at end of file |