<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body><span class="vcard"><a class="email" href="mailto:tietze.heiko@gmail.com" title="Heiko Tietze <tietze.heiko@gmail.com>"> <span class="fn">Heiko Tietze</span></a>
</span> changed
          <a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED - Make internal file and print dialogs obsolete"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=114484">bug 114484</a>
          <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">CC</td>
           <td>
                
           </td>
           <td>xiscofauli@libreoffice.org
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Assignee</td>
           <td>tietze.heiko@gmail.com
           </td>
           <td>libreoffice-bugs@lists.freedesktop.org
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED - Make internal file and print dialogs obsolete"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=114484#c2">Comment # 2</a>
              on <a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED - Make internal file and print dialogs obsolete"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=114484">bug 114484</a>
              from <span class="vcard"><a class="email" href="mailto:tietze.heiko@gmail.com" title="Heiko Tietze <tietze.heiko@gmail.com>"> <span class="fn">Heiko Tietze</span></a>
</span></b>
        <pre>Simple access vi UI is hidden with the patch, Tools > Options > Advanced >
Expert > org.openoffice.Office.Common.Misc > UseSystemFileDialog can still be
used to enable or disable. Regardless this option the internal dialogs will
also be shown for SAL_USE_VCLPLUGIN=gen and are relevant for headless mode.

Some code pointers to clean up later (would keep the ticket open):
svtools/source/config/miscopt.cxx
include/svtools/miscopt.hxx
cui/source/options/optgdlg.cxx
cui/source/options/optgdlg.hxx
desktop/source/app/app.cxx
svtools/source/uno/fpicker.cxx

The internal print dialog is still enabled, however the respective field is
hidden with code.

OfaMiscTabPage::OfaMiscTabPage(vcl::Window* pParent, const SfxItemSet& rSet)
    : SfxTabPage(pParent, "OptGeneralPage", "cui/ui/optgeneralpage.ui", &rSet)
{
    get(m_pExtHelpCB, "exthelp");
    if (!lcl_HasSystemFilePicker())
        get<VclContainer>("filedlgframe")->Hide();
#if ! ENABLE_GTK
    get<VclContainer>("printdlgframe")->Hide();
#else
    if (!SvtMiscOptions().IsExperimentalMode())
    {
        get<VclContainer>("printdlgframe")->Hide();
    }
#endif</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>