mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Remove GncOptionValue<std::Vector<GncGUID>>.
This going to be the Account List option implementation, but a more customized approach is better.
This commit is contained in:
parent
5a9c4ccaf8
commit
1b00399b14
@ -34,7 +34,6 @@ extern "C"
|
||||
}
|
||||
#include <gnc-datetime.hpp>
|
||||
#include <gnc-numeric.hpp>
|
||||
#include <guid.hpp>
|
||||
#include <libguile.h>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
@ -533,7 +532,6 @@ using GncOptionVariant = std::variant<GncOptionValue<std::string>,
|
||||
GncOptionValue<int64_t>,
|
||||
GncOptionValue<QofInstance*>,
|
||||
GncOptionValue<QofQuery*>,
|
||||
GncOptionValue<std::vector<GncGUID>>,
|
||||
GncOptionAccountValue,
|
||||
GncOptionMultichoiceValue,
|
||||
GncOptionRangeValue<int>,
|
||||
|
@ -72,11 +72,6 @@ scm_from_value<QofInstance*>(QofInstance* value)
|
||||
{
|
||||
return SCM_BOOL_F;
|
||||
}
|
||||
template <> inline SCM
|
||||
scm_from_value<std::vector<GncGUID>>(std::vector<GncGUID> value)
|
||||
{
|
||||
return SCM_BOOL_F;
|
||||
}
|
||||
|
||||
template <> inline SCM
|
||||
scm_from_value<std::string>(std::string value)
|
||||
|
Loading…
Reference in New Issue
Block a user