Ignore:
Timestamp:
2008-12-25T19:01:06+01:00 (16 years ago)
Author:
stoecker
Message:

updated a lot

Location:
applications/editors/josm/plugins/wmsplugin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wmsplugin

    • Property svn:ignore
      •  

        old new  
        11build
        22dist
         3webkit-image.h
  • applications/editors/josm/plugins/wmsplugin/build.xml

    r12472 r12588  
    5656        <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    5757        <attribute name="Plugin-Description" value="Allows external WMS resources to be displayed." />
    58         <attribute name="Plugin-Mainversion" value="1153" />
     58        <attribute name="Plugin-Mainversion" value="1180" />
    5959      </manifest>
    6060    </jar>
  • applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSPreferenceEditor.java

    r12321 r12588  
    109109        }
    110110       
    111         public void ok() {
     111        public boolean ok() {
    112112                boolean change = false;
    113113                for (int i = 0; i < model.getRowCount(); ++i) {
     
    145145
    146146                if (change) WMSPlugin.refreshMenu();
     147                return false;
    147148        }
    148149       
  • applications/editors/josm/plugins/wmsplugin/webkit-image.cpp

    r12421 r12588  
    2222#define BINARYSTDOUT
    2323#endif
    24 
    25 #define WIDTH 2000
    2624
    2725class Save : public QObject
     
    7472  QObject::connect(page, SIGNAL(loadFinished(bool)), s, SLOT(loaded(bool)));
    7573  QObject::connect(s, SIGNAL(finish(void)), &a, SLOT(quit()));
     74  /* set some useful defaults for a webpage */
     75//  page->setViewportSize(QSize(1280,1024));
     76//  page->mainFrame()->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAlwaysOff);
     77//  page->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff);
    7678  page->mainFrame()->load (QUrl(url));
    7779  return a.exec();
Note: See TracChangeset for help on using the changeset viewer.