Remove unused variable from Parms

This commit is contained in:
Ai Lin Chia
2016-05-02 11:51:04 +02:00
parent 61c8f7a49f
commit 6f7bdb52c6
2 changed files with 5 additions and 16 deletions

@ -3384,7 +3384,6 @@ void Parms::init ( ) {
m_parms[i].m_addin = 0 ; // add insert row command?
m_parms[i].m_rdonly = 0 ; // is command off in read-only mode?
m_parms[i].m_hdrs = 1 ; // assume to always print headers
m_parms[i].m_perms = 0 ; // same as containing WebPages perms
m_parms[i].m_plen = -1 ; // offset for strings length
m_parms[i].m_group = true ; // start of a new group of controls?
m_parms[i].m_save = 1 ; // save to xml file?

20
Parms.h

@ -90,23 +90,14 @@ class GigablastRequest {
// these all reference into m_hr or into the Parm::m_def string!
char *m_url; // also for /get
///////////
//
// /admin/import parms
//
///////////
char *m_importDir; // TYPE_CHARPTR
int32_t m_importInjects;
///////////
//
// /get parms (for getting cached web pages)
//
///////////
int64_t m_docId;
int32_t m_strip;
char m_includeHeader;
int32_t m_strip;
char m_includeHeader;
///////////
//
@ -114,7 +105,7 @@ class GigablastRequest {
//
///////////
char *m_urlsBuf;
char m_stripBox;
char m_stripBox;
char m_harvestLinks;
SafeBuf m_listBuf;
Msg4 m_msg4;
@ -128,14 +119,14 @@ class GigablastRequest {
int32_t m_srn;
int32_t m_ern;
char *m_qlang;
bool m_forceDel;
bool m_forceDel;
char m_recycleContent;
};
// values for Parm::m_flags
#define PF_COOKIE 0x01 // store in cookie?
#define PF_REDBOX 0x02 // redbox constraint on search results
#define PF_SUBMENU_HEADER 0x04
//#define PF_UNUSED 0x04
#define PF_WIDGET_PARM 0x08
#define PF_API 0x10
#define PF_REBUILDURLFILTERS 0x20
@ -192,7 +183,6 @@ class Parm {
char m_rowid; // id of row controls are in, if any
char m_rdonly;// if in read-only mode, blank out this control?
char m_hdrs; // print headers for row or print title/desc for single?
char m_perms; // 0 means same as WebPages' m_perms
int32_t m_flags;
int32_t m_parmNum; // slot # in the m_parms[] array that we are
bool (*m_func)(char *parmRec);