COIN-OR::LEMON - Graph Library

Changeset 194:6b2b718420eb in glemon-0.x for main_win.cc


Ignore:
Timestamp:
02/28/07 19:20:28 (18 years ago)
Author:
Hegyi Péter
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/glemon/trunk@3205
Message:

Header reorganising

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main_win.cc

    r191 r194  
    2121#endif
    2222
    23 #include "main_win.h"
    24 #include "guipixbufs.h"
    25 #include "background_chooser_dialog.h"
     23#include <main_win.h>
     24#include <guipixbufs.h>
     25#include <background_chooser_dialog.h>
     26
     27#include <mapstorage.h>
     28#include <graph_displayer_canvas.h>
     29#include <algowin.h>
     30#include <new_map_win.h>
     31#include <nbtab.h>
    2632
    2733#include "i18n.h"
     
    365371  if(active_tab!=-1)
    366372    {
    367       if (tabs[active_tab]->mapstorage.modified)
     373      if (tabs[active_tab]->mapstorage->modified)
    368374        {
    369375          Gtk::MessageDialog mdialog(_("<b>Save changes before closing?</b>"), true,
     
    554560    {
    555561    }
    556   awp->update_maplist(&(tabs[i]->mapstorage));
     562  awp->update_maplist(tabs[i]->mapstorage);
    557563}
    558564
     
    633639void MainWin::createBackgroundChooser()
    634640{
    635   BackgroundChooserDialog dialog(&(tabs[active_tab]->mapstorage));
     641  BackgroundChooserDialog dialog(tabs[active_tab]->mapstorage);
    636642  dialog.run();
    637643}
Note: See TracChangeset for help on using the changeset viewer.