summaryrefslogtreecommitdiff
path: root/wx+/image_tools.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-09-03 20:50:36 +0000
committerB Stack <bgstack15@gmail.com>2019-09-03 20:50:36 +0000
commit89b5c8eb6012b7b4560958ad3c1aa5b187dafc94 (patch)
treeafc54ec004ab863262f5621fbf282c42fdff29cc /wx+/image_tools.h
parentMerge branch '10.14' into 'master' (diff)
parentadd upstream 10.15 (diff)
downloadFreeFileSync-10.15.tar.gz
FreeFileSync-10.15.tar.bz2
FreeFileSync-10.15.zip
Merge branch '10.15' into 'master'10.15
add upstream 10.15 See merge request opensource-tracking/FreeFileSync!12
Diffstat (limited to 'wx+/image_tools.h')
-rw-r--r--wx+/image_tools.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/image_tools.h b/wx+/image_tools.h
index b1df41e6..2a0dd0d4 100644
--- a/wx+/image_tools.h
+++ b/wx+/image_tools.h
@@ -213,7 +213,7 @@ wxColor gradient(const wxColor& from, const wxColor& to, double fraction)
inline
wxColor hsvColor(double h, double s, double v) //h within [0, 360), s, v within [0, 1]
{
- //http://de.wikipedia.org/wiki/HSV-Farbraum
+ //https://de.wikipedia.org/wiki/HSV-Farbraum
//make input values fit into bounds
if (h > 360)
bgstack15