]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiSendto.cpp
Upstreaming compilation patch needed for Gentoo.
[lyx.git] / src / frontends / qt4 / GuiSendto.cpp
index a3c125eac8939ef4a597ae731fd6172ef4e7a6be..627ddf2d3f59734b7cd9290f9e595ba6a50b2105 100644 (file)
@@ -16,6 +16,7 @@
 
 #include "Buffer.h"
 #include "BufferParams.h"
+#include "Converter.h"
 #include "Format.h"
 #include "FuncRequest.h"
 
@@ -71,7 +72,7 @@ void GuiSendTo::changed_adaptor()
 
 void GuiSendTo::updateContents()
 {
-       vector<Format const *> const & all_formats = 
+       FormatList const & all_formats =
            buffer().params().exportableFormats(false);
        // Save the current selection if any
        Format const * current_format = nullptr;
@@ -101,7 +102,7 @@ void GuiSendTo::applyView()
        if (line < 0 || line > formatLW->count())
                return;
 
-       vector<Format const *> const & all_formats = 
+       FormatList const & all_formats =
            buffer().params().exportableFormats(false);
        format_ = all_formats[line];
        command_ = command;