From d6724de600b285d39168ae6ad0348de9bf8eb2db Mon Sep 17 00:00:00 2001
From: Federico Montesino Pouzols <federico.montesino-pouzols@stfc.ac.uk>
Date: Thu, 9 Jul 2015 17:19:51 +0100
Subject: [PATCH] fix savefig() saveImage => export, re #13066

---
 Code/Mantid/MantidPlot/pymantidplot/proxies.py | 2 +-
 Code/Mantid/MantidPlot/pymantidplot/pyplot.py  | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Code/Mantid/MantidPlot/pymantidplot/proxies.py b/Code/Mantid/MantidPlot/pymantidplot/proxies.py
index 90099772f1d..1e3b969565e 100644
--- a/Code/Mantid/MantidPlot/pymantidplot/proxies.py
+++ b/Code/Mantid/MantidPlot/pymantidplot/proxies.py
@@ -279,7 +279,7 @@ class Layer(QtProxyObject):
     # The only purpose of listing them here is that these will be returned by this class' __dir()__, and
     #    shown interactively, while the ones not listed and/or overloaded here may not be shown in ipython, etc.
     additional_methods = ['logLogAxes', 'logXLinY', 'logXLinY',
-                          'removeLegend', 'saveImage', 'setAxisScale', 'setCurveLineColor', 'setCurveLineStyle',
+                          'removeLegend', 'export', 'setAxisScale', 'setCurveLineColor', 'setCurveLineStyle',
                           'setCurveLineWidth', 'setCurveSymbol', 'setScale', 'setTitle', 'setXTitle', 'setYTitle']
 
     def __init__(self, toproxy):
diff --git a/Code/Mantid/MantidPlot/pymantidplot/pyplot.py b/Code/Mantid/MantidPlot/pymantidplot/pyplot.py
index 78254a217a8..ab5680c8b85 100644
--- a/Code/Mantid/MantidPlot/pymantidplot/pyplot.py
+++ b/Code/Mantid/MantidPlot/pymantidplot/pyplot.py
@@ -686,8 +686,8 @@ class Figure():
         """
         if not name:
             raise ValueError("Error: you need to specify a non-empty file name")
-        l = _graph.activeLayer()
-        l.saveImage(name);
+        l = self._graph.activeLayer()
+        l.export(name);
 
     @classmethod
     def fig_seq(cls):
@@ -1561,4 +1561,4 @@ def savefig(name):
     if not name:
         raise ValueError("Error: you need to specify a non-empty file name")
     l = __last_fig()._graph.activeLayer()
-    l.saveImage(name);
+    l.export(name);
-- 
GitLab