Changeset 289

Show
Ignore:
Timestamp:
06/27/08 10:09:36 (4 months ago)
Author:
mattn
Message:

* reactivated WXY_Print function to generate screenshots from the xy window
* removed all the references to the old bugzilla links (deadlinks - no longer useful)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • GtkRadiant/trunk/contrib/bkgrnd2d/bkgrnd2d.cpp

    r185 r289  
    9696 
    9797/* 
    98  * should cleanup, but I don't think we can be sure it happens before our  
     98 * should cleanup, but I don't think we can be sure it happens before our 
    9999 * interfaces are gone 
    100100CBackgroundImage::~CBackgroundImage() 
     
    155155{ 
    156156        qtexture_t *newtex; 
    157          
     157 
    158158        unsigned char *image = NULL; // gets allocated with what ? g_malloc 
    159159        int width = 0, height = 0; 
     
    167167 
    168168// just in case we want to build for an old version 
    169 // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=900 
    170169#ifdef BKGRND2D_JPG_WORKAROUND 
    171170        if ( strlen(filename) > 4 && !strcmp(".jpg",filename + strlen(filename) - 4)) { 
     
    178177        } 
    179178#endif 
    180          
     179 
    181180        //TODO bug for stored texture size 
    182181        //TODO whose gl context are we in, anyway ? 
     
    253252        //TODO should never happen 
    254253        if(!selected_brushes) { 
    255           Sys_Printf (MSG_PREFIX "selected_brushes = NULL\n");  
     254          Sys_Printf (MSG_PREFIX "selected_brushes = NULL\n"); 
    256255          return false; 
    257256        } 
    258257        // this should mean no selection 
    259258        if(selected_brushes == selected_brushes->next) { 
    260           Sys_Printf (MSG_PREFIX "nothing selected\n");  
     259          Sys_Printf (MSG_PREFIX "nothing selected\n"); 
    261260 
    262261          return false; 
     
    299298        vec3_t mins,maxs; 
    300299 
    301         if(!get_selection_bounds(mins,maxs))  
     300        if(!get_selection_bounds(mins,maxs)) 
    302301                return false; 
    303302 
  • GtkRadiant/trunk/contrib/bkgrnd2d/dialog.cpp

    r283 r289  
    146146//TODO bug/patch for comments 
    147147//TODO patern gets fucked up sometimes if empty 
    148 //http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=915 
    149148        newfile = g_FuncTable.m_pfnFileDialog(pDialogWnd,TRUE, 
    150149                                                                  "Load Background Image",browsedir,FILETYPE_KEY); 
  • GtkRadiant/trunk/contrib/bkgrnd2d/plugin.cpp

    r185 r289  
    2525// Code by reyalP aka Reed Mideke 
    2626// 
    27 // Based on  
     27// Based on 
    2828// 
    2929 
     
    4444      - tooltips, follow gtkradiant coding conventions 
    4545 
    46     Why ? 
    47     ----- 
    48       http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=88 
    49  
    50  
    5146    How ? 
    5247    ----- 
     
    5954#include "dialog.h" 
    6055 
    61 #define CMD_SEP "-"  
     56#define CMD_SEP "-" 
    6257#define CMD_CONFIG "Configure..." 
    6358#define CMD_ABOUT "About..." 
     
    8176 
    8277//backwards for some reason 
    83 static const char *PLUGIN_COMMANDS = CMD_ABOUT ";"  
     78static const char *PLUGIN_COMMANDS = CMD_ABOUT ";" 
    8479                                     CMD_SEP ";" 
    8580                                                                                         CMD_CONFIG 
     
    106101}; 
    107102 
    108 struct toolbar_button_info_s toolbar_buttons[NUM_TOOLBAR_BUTTONS] =  
     103struct toolbar_button_info_s toolbar_buttons[NUM_TOOLBAR_BUTTONS] = 
    109104{ 
    110105        { 
     
    205200extern "C" void QERPlug_Dispatch (const char *p, vec3_t vMin, vec3_t vMax, bool bSingleBrush) 
    206201{ 
    207   Sys_Printf (MSG_PREFIX "Command \"%s\"\n",p);  
     202  Sys_Printf (MSG_PREFIX "Command \"%s\"\n",p); 
    208203  if(!strcmp(p, CMD_ABOUT)) { 
    209204        g_FuncTable.m_pfnMessageBox(NULL, PLUGIN_ABOUT, "About", MB_OK, NULL); 
    210   }  
     205  } 
    211206  else if(!strcmp(p,CMD_CONFIG)) { 
    212207        ShowBackgroundDialog(); 
     
    217212void DoBkgrndToggleXY() 
    218213{ 
    219   Sys_Printf (MSG_PREFIX "DoBkgrndToggleXY\n");  
     214  Sys_Printf (MSG_PREFIX "DoBkgrndToggleXY\n"); 
    220215  // always toggle, since the buttons do 
    221216  backgroundXY.m_bActive = (backgroundXY.m_bActive) ? false:true; 
     
    231226void DoBkgrndToggleXZ() 
    232227{ 
    233   Sys_Printf (MSG_PREFIX "DoBkgrndToggleXZ\n");  
     228  Sys_Printf (MSG_PREFIX "DoBkgrndToggleXZ\n"); 
    234229  backgroundXZ.m_bActive = (backgroundXZ.m_bActive) ? false:true; 
    235230  if(backgroundXZ.m_bActive && !backgroundXZ.Valid()) 
     
    241236void DoBkgrndToggleYZ() 
    242237{ 
    243   Sys_Printf (MSG_PREFIX "DoBkgrndToggleYZ\n");  
     238  Sys_Printf (MSG_PREFIX "DoBkgrndToggleYZ\n"); 
    244239  backgroundYZ.m_bActive = (backgroundYZ.m_bActive) ? false:true; 
    245240  if(backgroundYZ.m_bActive && !backgroundYZ.Valid()) 
     
    254249CSynapseServer* g_pSynapseServer = NULL; 
    255250CSynapseClientBkgrnd2d g_SynapseClient; 
    256      
     251 
    257252#if __GNUC__ >= 4 
    258253#pragma GCC visibility push(default) 
  • GtkRadiant/trunk/include/ifilesystem.h

    r183 r289  
    4747// free memory allocated by VFS for this pointer 
    4848typedef void (* PFN_VFSFREEFILE) (void *p); 
    49 // return a GSList with all the directories under basedir  
     49// return a GSList with all the directories under basedir 
    5050typedef GSList* (* PFN_VFSGETDIRLIST) (const char *basedir); 
    5151// return a GSList with all the files under basedir (extension can be NULL) 
     
    6969WARNING: the allocated buffer must be freed with a g_free call 
    7070NOTE TTimo: the g_free release is utter horror 
    71  see http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=491 
    7271*/ 
    7372typedef int (* PFN_VFSLOADFILE) (const char *filename, void **buffer, int index); 
     
    9190FIXME TTimo our VFS names are case insensitive. 
    9291   this function is not able to build the full path from case-insensitive name 
    93    ( this is http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=130 ) 
    9492*/ 
    9593typedef char* (* PFN_VFSGETFULLPATH) (const char *in, int index, int flag); 
  • GtkRadiant/trunk/include/qerplugin.h

    r264 r289  
    465465this will work from the RGBA data and create a GL texture (accessed through a GL bind number) 
    466466it takes care of creating the mipmapping levels too 
    467 see http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=575 for some related issues 
    468467*/ 
    469468typedef qtexture_t* (* PFN_QERAPP_LOADTEXTURERGBA)(unsigned char* pPixels, int nWidth, int nHeight); 
  • GtkRadiant/trunk/include/qertypes.h

    r264 r289  
    715715#endif // USEPLUGINENTITIES 
    716716 
    717   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=252 
    718717  // this is cam code addition? 
    719718  vec3_t color; 
     
    902901  // there are too many uneccessary calls to Sys_QGL_ExtensionSupported 
    903902  // NOTE TTimo: those are unused atm (set right, but not used) 
    904   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=623 
    905903  bool m_bOpenGLCompressionSupported; 
    906904  bool m_bS3CompressionSupported; 
  • GtkRadiant/trunk/libs/synapse/synapse.cpp

    r263 r289  
    10941094  return mAPIs[i]; 
    10951095} 
    1096  
    1097 // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=879 
    1098 void fini_stub() { 
    1099   printf( "fini_stub\n" ); 
    1100 } 
  • GtkRadiant/trunk/plugins/image/lbmlib.cpp

    r185 r289  
    287287  int           dataByte, runLength; 
    288288  byte  *out, *pix; 
    289          
     289 
    290290 
    291291  /* load the file */ 
    292292  len = vfsLoadFile (filename, (void **)&raw, 0); 
    293   if( len == -1 )  
     293  if( len == -1 ) 
    294294    Error( "LoadPCX: Couldn't read %s", filename ); 
    295295 
     
    298298  pcx = (pcx_t *)raw; 
    299299  raw = &pcx->data; 
    300    
     300 
    301301  pcx->xmin = LittleShort(pcx->xmin); 
    302302  pcx->ymin = LittleShort(pcx->ymin); 
     
    307307  pcx->bytes_per_line = LittleShort(pcx->bytes_per_line); 
    308308  pcx->palette_type = LittleShort(pcx->palette_type); 
    309    
     309 
    310310  if (pcx->manufacturer != 0x0a 
    311311    || pcx->version != 5 
     
    336336  *pic = out; 
    337337  pix = out; 
    338          
     338 
    339339  /* RR2DO2: pcx fix  */ 
    340340  lsize = pcx->color_planes * pcx->bytes_per_line; 
    341          
     341 
    342342  /* go scanline by scanline */ 
    343343  for( y = 0; y <= pcx->ymax; y++, pix += pcx->xmax + 1 ) 
     
    361361      x++; 
    362362  } 
    363          
     363 
    364364  /* validity check */ 
    365365  if( raw - (byte *) pcx > len) 
     
    517517            *pixbuf++ = 255; 
    518518            break; 
    519            
     519 
    520520          case 24: 
    521521            blue = *buf_p++; 
     
    553553    if (!bAlphaOK) 
    554554    { 
    555       // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=444 
    556       if (targa_header.pixel_size == 32)  
     555      if (targa_header.pixel_size == 32) 
    557556                                Sys_FPrintf (SYS_WRN, "WARNING: %s has empty alpha channel\n", name); 
    558557      // disable the alpha value 
  • GtkRadiant/trunk/plugins/imagepng/plugin.cpp

    r191 r289  
    3939  bool RequestAPI(APIDescriptor_t *pAPI); 
    4040  const char* GetInfo(); 
    41    
     41 
    4242  CSynapseClientImage() { } 
    4343  virtual ~CSynapseClientImage() { } 
     
    6666  g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(_QERFuncTable_1), SYN_REQUIRE, &g_FuncTable); 
    6767  // NOTE: if imagepng starts being used for non "VFS" "pk3" config, need to add a dynamic config chunk 
    68   // see: 
    69   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=794 
    70   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=800 
    7168  g_SynapseClient.AddAPI(VFS_MAJOR, "pk3", sizeof(_QERFileSystemTable), SYN_REQUIRE, &g_FileSystemTable); 
    7269 
     
    7774{ 
    7875  if (!strcmp(pAPI->major_name, IMAGE_MAJOR)) 
    79   {     
     76  { 
    8077    _QERPlugImageTable* pTable= static_cast<_QERPlugImageTable*>(pAPI->mpTable); 
    8178    if (!strcmp(pAPI->minor_name, "png")) 
     
    136133 
    137134  p_fbuffer = fbuffer; 
    138          
     135 
    139136  // the reading glue 
    140137  // http://www.libpng.org/pub/png/libpng-manual.html 
     
    148145    return; 
    149146  } 
    150                  
     147 
    151148  png_infop info_ptr = png_create_info_struct(png_ptr); 
    152149  if (!info_ptr) { 
     
    156153    return; 
    157154  } 
    158          
     155 
    159156  png_infop end_info = png_create_info_struct(png_ptr); 
    160157  if (!end_info) { 
     
    185182 
    186183  // we want to treat all images the same way 
    187   //   The following code transforms grayscale images of less than 8 to 8 bits,  
    188   //   changes paletted images to RGB, and adds a full alpha channel if there is  
     184  //   The following code transforms grayscale images of less than 8 to 8 bits, 
     185  //   changes paletted images to RGB, and adds a full alpha channel if there is 
    189186  //   transparency information in a tRNS chunk. 
    190187  if (color_type == PNG_COLOR_TYPE_PALETTE) 
     
    202199 
    203200    if (png_get_bKGD(png_ptr, info_ptr, &image_background)) 
    204       png_set_background(png_ptr, image_background,  
     201      png_set_background(png_ptr, image_background, 
    205202      PNG_BACKGROUND_GAMMA_FILE, 1, 1.0); 
    206203    else 
     
    224221  int size = (*width)*(*height)*4; 
    225222  // still have to use that g_malloc heresy 
    226   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=491 
    227223  *pic = (unsigned char *)g_malloc(size); 
    228224  row_pointers = (png_byte**) malloc((*height) * sizeof(png_byte*)); 
  • GtkRadiant/trunk/plugins/vfspak/vfs.cpp

    r275 r289  
    629629/*! 
    630630\param shorten will try to match against the short version 
    631 http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=144 
    632631recent switch back to short path names in project settings has broken some stuff 
    633632with shorten == true, we will convert in to short version before looking for root 
  • GtkRadiant/trunk/plugins/vfspk3/vfs.cpp

    r275 r289  
    654654/*! 
    655655\param shorten will try to match against the short version 
    656 http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=144 
    657656recent switch back to short path names in project settings has broken some stuff 
    658657with shorten == true, we will convert in to short version before looking for root 
  • GtkRadiant/trunk/radiant/brush.cpp

    r264 r289  
    19961996Returns the face hit and the distance along the ray the intersection occured at 
    19971997Returns NULL and 0 if not hit at all 
    1998  
    1999 http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=556 
    20001998============== 
    20011999*/ 
  • GtkRadiant/trunk/radiant/drag.cpp

    r185 r289  
    7979        else 
    8080                v[i] = 1; 
    81          
     81 
    8282} 
    8383 
     
    9797 
    9898  drag_first = true; 
    99    
     99 
    100100  VectorCopy (vec3_origin, pressdelta); 
    101101  pressx = x; 
     
    110110  if (g_qeglobals.d_select_mode == sel_curvepoint) 
    111111  { 
    112     SelectCurvePointByRay (origin, dir, buttons);       
     112    SelectCurvePointByRay (origin, dir, buttons); 
    113113 
    114114    if(g_qeglobals.d_select_mode == sel_area) 
     
    142142    Sys_UpdateWindows(W_ALL); 
    143143 
    144     drag_ok = true;  
     144    drag_ok = true; 
    145145    return; 
    146146  } 
     
    159159  if (g_qeglobals.d_select_mode == sel_vertex) 
    160160  { 
    161     SelectVertexByRay (origin, dir);    
     161    SelectVertexByRay (origin, dir); 
    162162    if (g_qeglobals.d_num_move_points) 
    163163    { 
     
    173173  if (g_qeglobals.d_select_mode == sel_edge) 
    174174  { 
    175     SelectEdgeByRay (origin, dir);      
     175    SelectEdgeByRay (origin, dir); 
    176176    if (g_qeglobals.d_num_move_points) 
    177177    { 
     
    207207    else 
    208208      Sys_Printf ("Dragging entire selection\n"); 
    209      
     209 
    210210    return; 
    211211  } 
     
    301301 
    302302        peLink = pe; 
    303          
     303 
    304304} 
    305305 
     
    364364    Select_Ray (origin, dir, nFlag); 
    365365    UpdateSurfaceDialog(); 
    366      
     366 
    367367                return; 
    368368        } 
     
    492492                                  fLargest = vColor[i]; 
    493493            } 
    494                          
     494 
    495495                        if (fLargest == 0.0f) 
    496496                        { 
     
    517517                        else 
    518518                        { 
    519         // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=425 
    520519        Face_SetShader(t.face, g_qeglobals.d_texturewin.texdef.GetName()); 
    521520                                Brush_Build(t.brush); 
     
    567566                        nAxis = 2; 
    568567                } 
    569                 else  
     568                else 
    570569                if (g_pParentWnd->ActiveXY()->GetViewType() == XZ) 
    571570                { 
     
    605604                        v[2] = 1.1f; 
    606605                } 
    607                 else  
     606                else 
    608607                        if (move[1] < 0) 
    609608                { 
     
    633632        // this is fairly crappy way to deal with curvepoint and area selection 
    634633        // but it touches the smallest amount of code this way 
    635         //  
     634        // 
    636635        if (g_qeglobals.d_num_move_points || g_qeglobals.d_select_mode == sel_vertex || g_qeglobals.d_select_mode == sel_area || g_qeglobals.d_select_mode == sel_areatall) 
    637636        { 
     
    830829                Sys_UpdateWindows (W_CAMERA); 
    831830        } 
    832    
    833   /* note: added cleanup here, since an edge drag will leave selected vertices  
     831 
     832  /* note: added cleanup here, since an edge drag will leave selected vertices 
    834833           in g_qeglobals.d_num_move_points 
    835834  */ 
    836   if (  g_qeglobals.d_select_mode != sel_vertex &&  
     835  if (  g_qeglobals.d_select_mode != sel_vertex && 
    837836        g_qeglobals.d_select_mode != sel_curvepoint && 
    838837        g_qeglobals.d_select_mode != sel_edge) 
    839838    g_qeglobals.d_num_move_points = 0; 
    840    
     839 
    841840  g_pParentWnd->SetStatusText(3, ""); 
    842841  Undo_EndBrushList(&selected_brushes); 
  • GtkRadiant/trunk/radiant/eclass.cpp

    r185 r289  
    8686      model = model->pNext; 
    8787    } 
    88      
     88 
    8989    if (pList->modelpath) { 
    9090      free(pList->modelpath); 
     
    9595      pList->skinpath = NULL; 
    9696    } 
    97      
     97 
    9898    free(pList->name); 
    9999    free(pList->comments); 
     
    124124{ 
    125125        eclass_t        *s; 
    126          
     126 
    127127        if (!pList) 
    128128        { 
     
    163163#else 
    164164        eclass_t        *s; 
    165          
     165 
    166166        if (!eclass) 
    167167        { 
     
    210210  if (pFiles) 
    211211  { 
    212    
     212 
    213213    // find an eclass without a modelpath. 
    214214    for (e=eclass ; e ; e=e->next) 
     
    289289    strcpy(relPath, "scripts/"); 
    290290    strcat(relPath, (char*)pFile->data); 
    291     // FIXME TTimo http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=130 
    292291    if (!vfsGetFullPath(relPath, 0, 0)) 
    293292    { 
    294293      Sys_FPrintf(SYS_ERR, "Failed to find the full path for '%s' in the VFS\n", relPath); 
    295       Sys_FPrintf(SYS_ERR, "did you hit bug http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=130 ?\n"); 
    296294    } 
    297295    else 
     
    360358  // start by creating the default unknown eclass 
    361359  eclass_bad = EClass_Create("UNKNOWN_CLASS" , 0, 0.5, 0,NULL,NULL,NULL); 
    362    
     360 
    363361  // now scan the definitions 
    364362  _EClassTable *pTable = &g_EClassDefTable; 
     
    434432        strcpy(relPath, "scripts/"); 
    435433        strcat(relPath, (char*)pFile->data); 
    436         // FIXME TTimo http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=130 
    437434        char *fullpath = vfsGetFullPath(relPath, 0, 0); 
    438435        if (!fullpath) 
    439436        { 
    440437          Sys_FPrintf(SYS_ERR, "Failed to find the full path for \"%s\" in the VFS\n", relPath); 
    441           Sys_FPrintf(SYS_ERR, "did you hit bug http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=130 ?\n"); 
    442438        } 
    443439        else 
     
    452448    else 
    453449      Sys_FPrintf(SYS_ERR, "Didn't find any scripts/*.%s files to load EClass information\n", pTable->m_pfnGetExtension()); 
    454      
     450 
    455451    // we deal with two formats max, if the other table exists, loop again 
    456452    if (g_bHaveEClassExt && pTable == &g_EClassDefTable) 
  • GtkRadiant/trunk/radiant/error.cpp

    r264 r289  
    8080    Gtk will only crunch 0<=char<=127 
    8181    this is a bit hackish, but I didn't find useful functions in win32 API for this 
    82     http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=516 
    8382    */ 
    8483    TCHAR *scan, *next = (TCHAR*)lpMsgBuf; 
  • GtkRadiant/trunk/radiant/groupdialog.cpp

    r285 r289  
    4040int                                     inspector_mode;         // W_TEXTURE, W_ENTITY, or W_CONSOLE 
    4141qboolean                multiple_entities; 
    42 // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=17 
    4342qboolean                disable_spawn_get = false; 
    4443entity_t                *edit_entity; 
     
    989988  GtkTreeIter selected; 
    990989  // no world entity, we are not ready yet 
    991   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=917 
    992990  if( !world_entity ) { 
    993991    return; 
  • GtkRadiant/trunk/radiant/gtkdlgs.cpp

    r271 r289  
    19991999  int i; 
    20002000 
    2001   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=503 
    20022001  // making this work when regioning is on too 
    20032002 
     
    35873586 
    35883587  // start by a warning message 
    3589   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=459 
    35903588// mattn: URLs no longer valid 
    35913589//  CString msg; 
     
    37143712 
    37153713// several attempts 
    3716 // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=355 
    37173714#if 0 
    37183715#ifdef _WIN32 
     
    39373934 
    39383935  // old win32 code with EditPad bindings, broken 
    3939   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=355 
    39403936#if 0 
    39413937  strEditCommand = g_strAppPath.GetBuffer(); 
  • GtkRadiant/trunk/radiant/gtkmisc.cpp

    r286 r289  
    8282void win32_get_window_pos(GtkWidget *widget, gint *x, gint *y) 
    8383{ 
    84   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=913 
    8584  if ( g_PrefsDlg.m_bStartOnPrimMon ) { 
    8685    RECT rc; 
  • GtkRadiant/trunk/radiant/main.cpp

    r265 r289  
    587587  and to turn on console logging for lookup of the problem 
    588588  this is the first part of the two step .pid system 
    589   http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=297 
    590589  */ 
    591590  g_pidFile = g_strTempPath.GetBuffer (); 
     
    645644  // make something idiot proof and someone will make better idiots, this may be overkill 
    646645  // let's leave it disabled in debug mode in any case 
    647   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=431 
    648646#ifndef _DEBUG 
    649647  //#define CHECK_VERSION 
     
    725723  /*! 
    726724  now the secondary game dependant .pid file 
    727   http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=297 
    728725  */ 
    729726  g_pidGameFile = g_PrefsDlg.m_rc_path->str; 
     
    801798  } 
    802799 
    803   // FIXME http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=639 
    804800  // we should search in g_strTempPath, then move over to look at g_strAppPath? 
    805801#ifdef _WIN32 
  • GtkRadiant/trunk/radiant/mainframe.cpp

    r286 r289  
    5555CString g_strAppPath;                   ///< holds the full path of the executable 
    5656CString g_strDTDPath;                   ///< path to the DTD files 
    57 /*! 
    58 see http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=297 for the two below 
    59 */ 
    6057CString g_pidFile;                      ///< the global .pid file (only for global part of the startup) 
    6158CString g_pidGameFile;                  ///< the game-specific .pid file 
     
    744741  unsigned int code = gdk_keyval_to_upper(event->keyval); 
    745742 
    746   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=924 
    747743  if(code == GDK_ISO_Left_Tab) { 
    748744    code = GDK_Tab; 
     
    753749#endif 
    754750 
    755   // BUG: http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=865 
    756751  // return only if Texture Viewport  is in main window, otherwise if Tex viewport is in it's own window 
    757752  // the Filter GtkEntry won't release focus 
     
    14251420  item = create_menu_item_with_mnemonic (menu, _("Previous leak spot"), 
    14261421                           GTK_SIGNAL_FUNC (HandleCommand), ID_MISC_PREVIOUSLEAKSPOT); 
    1427   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=394 
    1428 //  create_menu_item_with_mnemonic (menu, _("_Print XY View"), GTK_SIGNAL_FUNC (HandleCommand), ID_MISC_PRINTXY); 
     1422  create_menu_item_with_mnemonic (menu, _("_Print XY View"), GTK_SIGNAL_FUNC (HandleCommand), ID_MISC_PRINTXY); 
    14291423  item = create_menu_item_with_mnemonic (menu, _("_Select Entity Color..."), 
    14301424                           GTK_SIGNAL_FUNC (HandleCommand), ID_MISC_SELECTENTITYCOLOR); 
     
    56145608void MainFrame::OnBspCommand (unsigned int nID) 
    56155609{ 
    5616   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=503 
    56175610  // make sure we don't attempt to region compile a map with the camera outside the region 
    56185611  if (region_active) 
     
    57695762        // check if that works with fs_game (I suspect some more design is needed) 
    57705763        // see how this is done in 1.2? 
    5771         // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=507 
    57725764  strcpy (def_path, g_pGameDescription->mEnginePath.GetBuffer()); 
    57735765  strcat (def_path, g_pGameDescription->mBaseGame.GetBuffer()); 
     
    62126204void MainFrame::OnMiscPrintxy() 
    62136205{ 
    6214 //  WXY_Print(); 
     6206  WXY_Print(); 
    62156207} 
    62166208 
  • GtkRadiant/trunk/radiant/map.cpp

    r264 r289  
    580580    // NOTE TTimo opening has binary doesn't make a lot of sense 
    581581  // but opening as text confuses the scriptlib parser 
    582   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=261 
    583582  // this may be a problem if we "rb" and use the XML parser, might have an incompatibility 
    584583  if (file.Open(filename, "rb")) 
     
    937936 
    938937 
    939   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=503 
    940938  // this is a safe check, but it should not really happen anymore 
    941939  vec3_t vOrig; 
  • GtkRadiant/trunk/radiant/patchdialog.cpp

    r185 r289  
    5454    int c = g_PatchDialog.m_nCol; 
    5555    if (r >= 0 && r < g_PatchDialog.m_Patch->height && c >= 0 && c < g_PatchDialog.m_Patch->width) 
    56     {             
     56    { 
    5757      if (g_PatchDialog.m_Patch->pShader) 
    5858        g_PatchDialog.m_Patch->pShader->DecRef(); 
    59         // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=467 
    6059        if (g_PatchDialog.m_strName.Find(' ') >= 0) 
    6160        { 
     
    310309  GtkObject *adj; 
    311310  char buf[32]; 
    312   
     311 
    313312  dlg = m_pWidget; 
    314    
     313 
    315314  load_window_pos (dlg, g_PrefsDlg.mWindowInfo.posPatchWnd); 
    316315 
     
    325324  gtk_widget_show (vbox); 
    326325  gtk_container_add (GTK_CONTAINER (dlg), vbox); 
    327   gtk_container_set_border_width (GTK_CONTAINER (vbox), 5);  
     326  gtk_container_set_border_width (GTK_CONTAINER (vbox), 5); 
    328327 
    329328  hbox = gtk_hbox_new (FALSE, 5); 
     
    681680  { 
    682681    m_strName = m_Patch->pShader->getName(); 
    683    
     682 
    684683    GList *combo_list = NULL; 
    685684    int i; 
     
    709708      combo_list = g_list_remove (combo_list, combo_list->data); 
    710709    } 
    711      
     710 
    712711    m_bListenChanged = true; 
    713      
     712 
    714713  } 
    715714  else 
  • GtkRadiant/trunk/radiant/preferences.cpp

    r288 r289  
    284284      *pV = pNode->children->content; 
    285285    } else { 
    286       // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=427 
    287286      // means the pref exists, and that the value is "" 
    288287      *pV = ""; 
     
    13761375  if (!retrieve) 
    13771376  { 
    1378     // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=639 
    13791377    // now check if we are running from a network installation 
    13801378    // use a dummy file as the flag 
     
    17751773#ifdef ATIHACK_812 
    17761774        // ATI bugs 
    1777         // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=812 
    17781775        check = gtk_check_button_new_with_label (_("ATI cards with broken drivers - bug #802")); 
    17791776        gtk_widget_show(check); 
     
    24612458  AddDialogData (entry, &m_strPrefabPath, DLG_ENTRY_TEXT); 
    24622459 
    2463   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=805 
    24642460#if 0 
    24652461  // browse button 
  • GtkRadiant/trunk/radiant/qe3.cpp

    r285 r289  
    280280//   in the long run I'd like to completely get rid of this 
    281281 
    282 // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=144 
    283282// used to be disabled, but caused problems 
    284283 
    285 // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=291 
    286284// can't work with long win32 names until the BSP commands are not working differently 
    287285#ifdef _WIN32 
     
    380378  xmlParserCtxtPtr ctxt; 
    381379 
    382   // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=433 
    383380  //if(validate) 
    384381  //  xmlDoValidityCheckingDefaultValue = 1; 
     
    602599    SetKeyValue( g_qeglobals.d_project_entity, "user_project", "1" ); 
    603600 
    604     // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=672 
    605601    if (IntForKey( g_qeglobals.d_project_entity, "version" ) != PROJECT_VERSION) 
    606602    { 
     
    608604      sprintf(strMsg, 
    609605        "The template project '%s' has version %d. The editor binary is configured for version %d.\n" 
    610         "This indicates a problem in your setup. See http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=672\n" 
     606        "This indicates a problem in your setup.\n" 
    611607        "I will keep going with this project till you fix this", 
    612608        projectfile, IntForKey( g_qeglobals.d_project_entity, "version" ), PROJECT_VERSION); 
  • GtkRadiant/trunk/radiant/qe3.h

    r283 r289  
    4949#include <stdio.h> 
    5050 
    51 // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=672 
    5251// this is the version to expect from template projects 
    5352#define PROJECT_VERSION 2 
     
    790789extern void RunBsp (char *command); 
    791790extern void Map_Snapshot(); 
    792 //extern void WXY_Print(); 
     791extern void WXY_Print(); 
    793792extern void AddProp( void ); 
    794793extern qboolean DoColor(int iIndex); 
  • GtkRadiant/trunk/radiant/qgl.h

    r183 r289  
    2727#define __QGL_H__ 
    2828 
    29 // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=812 
    3029#define ATIHACK_812 
    3130 
  • GtkRadiant/trunk/radiant/select.cpp

    r185 r289  
    5858                        //if ( (flags & SF_ENTITIES_FIRST) && brush->owner == world_entity) 
    5959                        //  continue; 
    60                   
     60 
    6161                        if (brush->bFiltered) 
    6262                                continue; 
     
    8787                                if (b == pToSelect) 
    8888                                { 
    89                                         // yes we want to select the next one in the list  
     89                                        // yes we want to select the next one in the list 
    9090                                        int n = (i > 0) ? i-1 : nSize-1; 
    9191