src/industry_gui.cpp
changeset 10504 7c80c8aaa1df
parent 10498 f198d0a1aab7
child 10507 a960a2ebb5ed
--- a/src/industry_gui.cpp	Sun May 11 15:00:11 2008 +0000
+++ b/src/industry_gui.cpp	Sun May 11 15:08:44 2008 +0000
@@ -433,7 +433,7 @@
 };
 
 /** Information to store about the industry window */
-struct indview_d : public vp_d {
+struct indview_d {
 	byte editbox_line;        ///< The line clicked to open the edit box
 	byte clicked_line;        ///< The line of the button that has been clicked
 	byte clicked_button;      ///< The button that has been clicked (to raise)
@@ -601,8 +601,8 @@
 			w->viewport->height          += e->we.sizing.diff.y;
 			w->viewport->virtual_width   += e->we.sizing.diff.x;
 			w->viewport->virtual_height  += e->we.sizing.diff.y;
-			WP(w, vp_d).dest_scrollpos_x -= e->we.sizing.diff.x;
-			WP(w, vp_d).dest_scrollpos_y -= e->we.sizing.diff.y;
+			w->viewport->dest_scrollpos_x -= e->we.sizing.diff.x;
+			w->viewport->dest_scrollpos_y -= e->we.sizing.diff.y;
 			UpdateViewportPosition(w);
 			break;