diff options
author | John Hayes <jdhayes.linux@gmail.com> | 2019-12-11 10:09:32 +0100 |
---|---|---|
committer | Christophe Giboudeaux <christophe@krop.fr> | 2019-12-11 10:09:50 +0100 |
commit | 975aaeeff483658521d838561b15f38bcc990aa3 (patch) | |
tree | d3e74a96c10641fe9577f3c80bae6679007bc1fc /src/kconfig_compiler/kconfig_compiler.cpp | |
parent | 7fc91a387a17c88116627e752477409d49e16c91 (diff) | |
download | kconfig-975aaeeff483658521d838561b15f38bcc990aa3.tar.gz kconfig-975aaeeff483658521d838561b15f38bcc990aa3.tar.bz2 |
kconfig EBN transport protocol cleanup
Summary: Change and test transport protocol from http to https while correcting dead link
Reviewers: apol
Reviewed By: apol
Subscribers: kde-frameworks-devel
Tags: #frameworks
Differential Revision: https://phabricator.kde.org/D25829
Diffstat (limited to 'src/kconfig_compiler/kconfig_compiler.cpp')
-rw-r--r-- | src/kconfig_compiler/kconfig_compiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kconfig_compiler/kconfig_compiler.cpp b/src/kconfig_compiler/kconfig_compiler.cpp index 054dbd4d..c90c0af0 100644 --- a/src/kconfig_compiler/kconfig_compiler.cpp +++ b/src/kconfig_compiler/kconfig_compiler.cpp @@ -1877,7 +1877,7 @@ int main(int argc, char **argv) } } h << endl; - + // Constructor or singleton accessor if (!cfg.singleton) { @@ -2446,7 +2446,7 @@ int main(int argc, char **argv) if (hasSignals) { // this cast to base-class pointer-to-member is valid C++ - // http://stackoverflow.com/questions/4272909/is-it-safe-to-upcast-a-method-pointer-and-use-it-with-base-class-pointer/ + // https://stackoverflow.com/questions/4272909/is-it-safe-to-upcast-a-method-pointer-and-use-it-with-base-class-pointer/ cpp << " KConfigCompilerSignallingItem::NotifyFunction notifyFunction =" << " static_cast<KConfigCompilerSignallingItem::NotifyFunction>(&" << cfg.className << "::itemChanged);" << endl << endl; |