From 4e3c479a0f279926e0bd9a359a0ee57b334e976e Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 8 Dec 2017 14:22:19 +0100 Subject: Replaced tinytoml with libconfig --- src/3rd-party/toml/LICENSE | 24 - src/3rd-party/toml/toml.h | 1958 ------------------------------------ src/browser.cpp | 222 +--- src/browser.h | 59 +- src/forms/aboutdialog.cpp | 64 +- src/forms/aboutdialog.h | 4 +- src/forms/profilesdialog.cpp | 22 +- src/forms/profilesdialog.h | 2 +- src/main.cpp | 175 ++-- src/mainwindow.cpp | 52 +- src/mainwindow.h | 8 +- src/singleapplication.cpp | 8 +- src/singleapplication.h | 2 +- src/webengine/webengineprofile.cpp | 157 ++- src/webengine/webengineprofile.h | 7 +- src/widgets/mainwindowmenubar.cpp | 58 +- src/widgets/mainwindowmenubar.h | 8 +- src/widgets/webviewtabbar.cpp | 7 +- 18 files changed, 377 insertions(+), 2460 deletions(-) delete mode 100644 src/3rd-party/toml/LICENSE delete mode 100644 src/3rd-party/toml/toml.h (limited to 'src') diff --git a/src/3rd-party/toml/LICENSE b/src/3rd-party/toml/LICENSE deleted file mode 100644 index 1514196..0000000 --- a/src/3rd-party/toml/LICENSE +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2014, MAYAH -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - diff --git a/src/3rd-party/toml/toml.h b/src/3rd-party/toml/toml.h deleted file mode 100644 index ec8c489..0000000 --- a/src/3rd-party/toml/toml.h +++ /dev/null @@ -1,1958 +0,0 @@ -#ifndef TINYTOML_H_ -#define TINYTOML_H_ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace toml { - -// ---------------------------------------------------------------------- -// Declarations - -class Value; -typedef std::chrono::system_clock::time_point Time; -typedef std::vector Array; -typedef std::map Table; - -namespace internal { -template struct call_traits_value { - typedef T return_type; -}; -template struct call_traits_ref { - typedef const T& return_type; -}; -} // namespace internal - -template struct call_traits; -template<> struct call_traits : public internal::call_traits_value {}; -template<> struct call_traits : public internal::call_traits_value {}; -template<> struct call_traits : public internal::call_traits_value {}; -template<> struct call_traits : public internal::call_traits_value {}; -template<> struct call_traits : public internal::call_traits_ref {}; -template<> struct call_traits