gnucash master: Fix missed file in fabbfdb0.
John Ralls
jralls at code.gnucash.org
Thu Oct 23 13:12:02 EDT 2014
Updated via https://github.com/Gnucash/gnucash/commit/177ea6f0 (commit)
from https://github.com/Gnucash/gnucash/commit/fabbfdb0 (commit)
commit 177ea6f02eaf61495ef69f559def2a7a30a37d41
Author: John Ralls <jralls at ceridwen.us>
Date: Thu Oct 23 10:11:43 2014 -0700
Fix missed file in fabbfdb0.
diff --git a/src/backend/xml/test/test-kvp-frames.c b/src/backend/xml/test/test-kvp-frames.c
index fb0e6da..ac2825b 100644
--- a/src/backend/xml/test/test-kvp-frames.c
+++ b/src/backend/xml/test/test-kvp-frames.c
@@ -16,7 +16,7 @@ const gchar *gnc_v2_xml_version_string = GNC_V2_STRING;
static void
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 KvpValue *test_val2;
@@ -37,10 +37,10 @@ test_kvp_get_slot(int run,
static void
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)
{
- kvp_frame *test_frame2;
+ KvpFrame *test_frame2;
test_frame2 = kvp_frame_copy(test_frame1);
@@ -70,10 +70,10 @@ test_kvp_copy_compare(int run,
static void
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)
{
- kvp_frame *test_frame2;
+ KvpFrame *test_frame2;
const KvpValue *test_val2;
test_frame2 = kvp_frame_copy(test_frame1);
@@ -101,7 +101,7 @@ test_kvp_copy_get_slot(int run,
static void
test_kvp_create_delete(void)
{
- kvp_frame *test_frame;
+ KvpFrame *test_frame;
test_frame = kvp_frame_new();
@@ -124,7 +124,7 @@ test_kvp_frames1(void)
for (i = 0; i < 20; i++)
{
- kvp_frame *test_frame1;
+ KvpFrame *test_frame1;
gchar *test_key;
KvpValue *test_val1;
@@ -151,7 +151,7 @@ test_kvp_printing(void)
int i;
for (i = 0; i < 20; i++)
{
- kvp_frame *ran_frame;
+ KvpFrame *ran_frame;
gchar *char_rep;
ran_frame = get_random_kvp_frame();
@@ -171,8 +171,8 @@ test_kvp_xml_stuff(void)
int i;
for (i = 0; i < 20; i++)
{
- kvp_frame *test_frame1;
- kvp_frame *test_frame2;
+ KvpFrame *test_frame1;
+ KvpFrame *test_frame2;
xmlNodePtr test_node;
test_frame1 = get_random_kvp_frame();
Summary of changes:
src/backend/xml/test/test-kvp-frames.c | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
More information about the gnucash-changes
mailing list