mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix missed file in fabbfdb0
.
This commit is contained in:
parent
fabbfdb054
commit
177ea6f02e
@ -16,7 +16,7 @@ const gchar *gnc_v2_xml_version_string = GNC_V2_STRING;
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
test_kvp_get_slot(int run,
|
test_kvp_get_slot(int run,
|
||||||
kvp_frame *test_frame1, const KvpValue *test_val1,
|
KvpFrame *test_frame1, const KvpValue *test_val1,
|
||||||
const gchar *test_key)
|
const gchar *test_key)
|
||||||
{
|
{
|
||||||
const KvpValue *test_val2;
|
const KvpValue *test_val2;
|
||||||
@ -37,10 +37,10 @@ test_kvp_get_slot(int run,
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
test_kvp_copy_compare(int run,
|
test_kvp_copy_compare(int run,
|
||||||
kvp_frame *test_frame1, const KvpValue *test_val1,
|
KvpFrame *test_frame1, const KvpValue *test_val1,
|
||||||
const gchar *test_key)
|
const gchar *test_key)
|
||||||
{
|
{
|
||||||
kvp_frame *test_frame2;
|
KvpFrame *test_frame2;
|
||||||
|
|
||||||
test_frame2 = kvp_frame_copy(test_frame1);
|
test_frame2 = kvp_frame_copy(test_frame1);
|
||||||
|
|
||||||
@ -70,10 +70,10 @@ test_kvp_copy_compare(int run,
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
test_kvp_copy_get_slot(int run,
|
test_kvp_copy_get_slot(int run,
|
||||||
kvp_frame *test_frame1, const KvpValue *test_val1,
|
KvpFrame *test_frame1, const KvpValue *test_val1,
|
||||||
const gchar *test_key)
|
const gchar *test_key)
|
||||||
{
|
{
|
||||||
kvp_frame *test_frame2;
|
KvpFrame *test_frame2;
|
||||||
const KvpValue *test_val2;
|
const KvpValue *test_val2;
|
||||||
|
|
||||||
test_frame2 = kvp_frame_copy(test_frame1);
|
test_frame2 = kvp_frame_copy(test_frame1);
|
||||||
@ -101,7 +101,7 @@ test_kvp_copy_get_slot(int run,
|
|||||||
static void
|
static void
|
||||||
test_kvp_create_delete(void)
|
test_kvp_create_delete(void)
|
||||||
{
|
{
|
||||||
kvp_frame *test_frame;
|
KvpFrame *test_frame;
|
||||||
|
|
||||||
test_frame = kvp_frame_new();
|
test_frame = kvp_frame_new();
|
||||||
|
|
||||||
@ -124,7 +124,7 @@ test_kvp_frames1(void)
|
|||||||
|
|
||||||
for (i = 0; i < 20; i++)
|
for (i = 0; i < 20; i++)
|
||||||
{
|
{
|
||||||
kvp_frame *test_frame1;
|
KvpFrame *test_frame1;
|
||||||
gchar *test_key;
|
gchar *test_key;
|
||||||
KvpValue *test_val1;
|
KvpValue *test_val1;
|
||||||
|
|
||||||
@ -151,7 +151,7 @@ test_kvp_printing(void)
|
|||||||
int i;
|
int i;
|
||||||
for (i = 0; i < 20; i++)
|
for (i = 0; i < 20; i++)
|
||||||
{
|
{
|
||||||
kvp_frame *ran_frame;
|
KvpFrame *ran_frame;
|
||||||
gchar *char_rep;
|
gchar *char_rep;
|
||||||
|
|
||||||
ran_frame = get_random_kvp_frame();
|
ran_frame = get_random_kvp_frame();
|
||||||
@ -171,8 +171,8 @@ test_kvp_xml_stuff(void)
|
|||||||
int i;
|
int i;
|
||||||
for (i = 0; i < 20; i++)
|
for (i = 0; i < 20; i++)
|
||||||
{
|
{
|
||||||
kvp_frame *test_frame1;
|
KvpFrame *test_frame1;
|
||||||
kvp_frame *test_frame2;
|
KvpFrame *test_frame2;
|
||||||
xmlNodePtr test_node;
|
xmlNodePtr test_node;
|
||||||
|
|
||||||
test_frame1 = get_random_kvp_frame();
|
test_frame1 = get_random_kvp_frame();
|
||||||
|
Loading…
Reference in New Issue
Block a user