Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 259287
Collapse All | Expand All

(-)w3c-libwww-5.4.0.old/Library/cvs2sql/cvs2sql.c (+1 lines)
Lines 15-20 Link Here
15
#include "WWWLib.h"			      /* Global Library Include file */
15
#include "WWWLib.h"			      /* Global Library Include file */
16
#include "WWWSQL.h"
16
#include "WWWSQL.h"
17
#include "HTextImp.h"
17
#include "HTextImp.h"
18
#include "HTHome.h"
18
19
19
#define APP_NAME			"cvs2sql"
20
#define APP_NAME			"cvs2sql"
20
#define APP_VERSION			"1.0"
21
#define APP_VERSION			"1.0"
(-)w3c-libwww-5.4.0.old/Library/src/HTAssoc.c (-1 / +1 lines)
Lines 129-135 Link Here
129
	HTAssocList * cur = list;
129
	HTAssocList * cur = list;
130
	HTAssoc * assoc;
130
	HTAssoc * assoc;
131
	while ((assoc = (HTAssoc *) HTAssocList_nextObject(cur))) {
131
	while ((assoc = (HTAssoc *) HTAssocList_nextObject(cur))) {
132
	    if (!strcmp(HTAssoc_name(assoc), name))
132
	    if (!strcmp(assoc->name, name))
133
		return HTAssoc_value(assoc);
133
		return HTAssoc_value(assoc);
134
	}
134
	}
135
    }
135
    }
(-)w3c-libwww-5.4.0.old/Library/src/HTList.h (-2 / +2 lines)
Lines 140-146 Link Here
140
This method returns the first element to the list or NULL if list
140
This method returns the first element to the list or NULL if list
141
is empty
141
is empty
142
*/
142
*/
143
extern void * HTList_firstObject  (HTList * me);
143
extern void * HTList_firstObject (HTList * me);
144
144
145
/*
145
/*
146
.
146
.
Lines 167-173 Link Here
167
and few items are many positions away from their sorted location. If the
167
and few items are many positions away from their sorted location. If the
168
list gets very long then you may wanna use a quicksort instead.
168
list gets very long then you may wanna use a quicksort instead.
169
*/
169
*/
170
extern BOOL HTList_insertionSort(HTList * list, HTComparer * comp);
170
extern BOOL HTList_insertionSort (HTList * list, HTComparer * comp);
171
171
172
/*
172
/*
173
.
173
.
(-)w3c-libwww-5.4.0.old/LineMode/src/GridText.h (-2 / +3 lines)
Lines 34-39 Link Here
34
extern BOOL HText_canScrollUp (HText * text);
34
extern BOOL HText_canScrollUp (HText * text);
35
extern BOOL HText_canScrollDown (HText * text);
35
extern BOOL HText_canScrollDown (HText * text);
36
36
37
extern BOOL HText_select (HText * text);
38
extern BOOL HText_selectAnchor (HText * text, HTChildAnchor * anchor);
39
37
/* Move display within window */
40
/* Move display within window */
38
extern void HText_scrollUp (HText * text);	/* One page */
41
extern void HText_scrollUp (HText * text);	/* One page */
39
extern void HText_scrollDown (HText * text);	/* One page */
42
extern void HText_scrollDown (HText * text);	/* One page */
Lines 91-95 Link Here
91
94
92
95
93
*/
96
*/
94
95
(-)w3c-libwww-5.4.0.old/LineMode/src/HTBrowse.c (-1 / +1 lines)
Lines 1260-1266 Link Here
1260
1260
1261
      case '>':
1261
      case '>':
1262
	if (!lm->host) {
1262
	if (!lm->host) {
1263
	    HText *curText = HTMainText;     /* Remember current main vindow */
1263
	    HText *curText = HTMainText;     /* Remember current main window */
1264
	    req = Thread_new(lm, NO, LM_NO_UPDATE);
1264
	    req = Thread_new(lm, NO, LM_NO_UPDATE);
1265
	    HTRequest_setReloadMode(req, HT_CACHE_FLUSH_MEM);
1265
	    HTRequest_setReloadMode(req, HT_CACHE_FLUSH_MEM);
1266
	    if (OutSource) HTRequest_setOutputFormat(req, WWW_SOURCE);
1266
	    if (OutSource) HTRequest_setOutputFormat(req, WWW_SOURCE);
(-)w3c-libwww-5.4.0.old/Robot/src/HTRobot.c (-1 / +5 lines)
Lines 396-406 Link Here
396
    return NULL;
396
    return NULL;
397
}
397
}
398
398
399
/*
400
**  assert(a != NULL)
401
**  assert(b != NULL)
402
*/
399
PRIVATE int FormatSort (const void * a, const void * b)
403
PRIVATE int FormatSort (const void * a, const void * b)
400
{
404
{
401
    MetaDist * aa = (MetaDist *) a;
405
    MetaDist * aa = (MetaDist *) a;
402
    MetaDist * bb = (MetaDist *) b;
406
    MetaDist * bb = (MetaDist *) b;
403
    return strcmp(HTAtom_name(bb->name), HTAtom_name(aa->name));
407
    return strcmp((bb->name)->name, (aa->name)->name);
404
}
408
}
405
409
406
PRIVATE BOOL log_meta_distribution (const char * logfile, HTList * distribution)
410
PRIVATE BOOL log_meta_distribution (const char * logfile, HTList * distribution)

Return to bug 259287