Removed unused include files

This commit is contained in:
leo
2001-01-07 18:41:15 +00:00
parent 410ef86cb4
commit da9ebc36c7
5 changed files with 2 additions and 7 deletions
+2 -2
View File
@@ -11,13 +11,13 @@ Messenger::Messenger ()
Messenger::~Messenger ()
{
for (unsigned int i = 0; i < m_Listeners.GetSize (); i++)
for (int i = 0; i < m_Listeners.GetSize (); i++)
delete m_Listeners[i];
}
void Messenger::Dispatch (int message, void *data)
{
for (unsigned int i = 0; i < m_Listeners.GetSize (); i++)
for (int i = 0; i < m_Listeners.GetSize (); i++)
m_Listeners[i]->func (message, data, m_Listeners[i]->user);
}
-1
View File
@@ -13,7 +13,6 @@
#include <string.h>
#include <stdlib.h>
#include "opengl.h"
#include "gtkglarea.h"
#include "gtktools.h"
#include "system.h"
#include "typedefs.h"
-1
View File
@@ -12,7 +12,6 @@
#include <unistd.h>
#include <string.h>
#include "opengl.h"
#include "gtkglarea.h"
#include "project.h"
#include "toolbar.h"
#include "globals.h"
-2
View File
@@ -7,8 +7,6 @@
#include <X11/keysym.h>
#include <sys/time.h>
#include "opengl.h"
#include "gdkgl.h"
#include "gtkglarea.h"
#include "gtkmisc.h"
#include "camera.h"
#include "project.h"
-1
View File
@@ -607,7 +607,6 @@ void colorlist_set(int new_color)
// Create the pieces toolbar
GtkWidget* create_piecebar (GtkWidget *window, GLWindow *share)
{
int attrlist[] = { GLX_RGBA, GLX_DOUBLEBUFFER, GLX_DEPTH_SIZE, 16, 0 };
gchar *titles[2] = { "Description", "Number" };
GtkWidget *vbox1, *hbox, *vpan, *scroll_win, *frame, *button, *arrow;