|
From: <ai...@us...> - 2014-01-22 22:55:25
|
Revision: 12951
http://sourceforge.net/p/plplot/code/12951
Author: airwin
Date: 2014-01-22 22:55:21 +0000 (Wed, 22 Jan 2014)
Log Message:
-----------
Change name of argument label ==> labels in the plcolorbar function prototype to make
it consistent with the name used and documented in the plcolorbar
function definition.
Change the name of the plgfci argument from pfci ==> p_fci
to make it consistent with the names of pointer arguments for
other PLplot routines.
Modified Paths:
--------------
trunk/include/plplot.h
trunk/src/plcore.c
Modified: trunk/include/plplot.h
===================================================================
--- trunk/include/plplot.h 2014-01-22 20:22:02 UTC (rev 12950)
+++ trunk/include/plplot.h 2014-01-22 22:55:21 UTC (rev 12951)
@@ -1056,7 +1056,7 @@
// Get FCI (font characterization integer)
PLDLLIMPEXP void
-c_plgfci( PLUNICODE *pfci );
+c_plgfci( PLUNICODE *p_fci );
// Get family file parameters
@@ -1259,7 +1259,7 @@
PLINT bg_color, PLINT bb_color, PLINT bb_style,
PLFLT low_cap_color, PLFLT high_cap_color,
PLINT cont_color, PLFLT cont_width,
- PLINT n_labels, const PLINT *label_opts, const char * const *label,
+ PLINT n_labels, const PLINT *label_opts, const char * const *labels,
PLINT n_axes, const char * const * axis_opts,
const PLFLT *ticks, const PLINT *sub_ticks,
const PLINT *n_values, const PLFLT * const *values );
Modified: trunk/src/plcore.c
===================================================================
--- trunk/src/plcore.c 2014-01-22 20:22:02 UTC (rev 12950)
+++ trunk/src/plcore.c 2014-01-22 22:55:21 UTC (rev 12951)
@@ -3786,10 +3786,10 @@
// drivers.
//
void
-c_plgfci( PLUNICODE *pfci )
+c_plgfci( PLUNICODE *p_fci )
{
// Always mark FCI as such.
- *pfci = plsc->fci | PL_FCI_MARK;
+ *p_fci = plsc->fci | PL_FCI_MARK;
}
// Store hex digit value shifted to the left by hexdigit hexadecimal digits
// into pre-existing FCI.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|