OSDN Git Service

不要なパラメータを削除。
authorsirakaba <sirakaba@9df91469-1e22-0410-86e7-ea8537beb833>
Fri, 23 Oct 2009 12:35:37 +0000 (12:35 +0000)
committersirakaba <sirakaba@9df91469-1e22-0410-86e7-ea8537beb833>
Fri, 23 Oct 2009 12:35:37 +0000 (12:35 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/tpi/tpi@76 9df91469-1e22-0410-86e7-ea8537beb833

src/frontend/frm_main.cpp

index c312427..3180898 100644 (file)
@@ -427,7 +427,7 @@ void MainFrame::OnArcOpen(wxCommandEvent& e)
                        }
 
                        // \83c\83\8a\81[\83r\83\85\81[\82É\94½\89f\81B
-                       TreeView_CheckNewerItem(this->tree_ctrl, idArcRoot, piInfo.fiInfo.fnFileName.GetPath(wxPATH_GET_VOLUME), true);
+                       TreeView_CheckNewerItem(this->tree_ctrl, idArcRoot, piInfo.fiInfo.fnFileName.GetPath(), true);
 
                        // \83f\83B\83\8c\83N\83g\83\8a\91®\90«\82ð\8aÜ\82Þ\82à\82Ì\82É\82Â\82¢\82Ä\82Í\8f\9c\8b\8e\81B
                        if (piInfo.fiInfo.dwAttribute & TPI_ATTRIBUTE_DIRECTORY)
@@ -585,7 +585,7 @@ void MainFrame::OnArcConvert(wxCommandEvent& e)
 
        // \95Û\91\90æ\82ð\90q\82Ë\82é\81B
        wxFileName fnArchive(this->statusbar->GetStatusText(4));
-       wxFileDialog fd(this, swInfo.fMakeSFX ? wxT("Save as SFX") : wxT("Save as normal archive"), fnArchive.GetPath(wxPATH_GET_VOLUME), fnArchive.GetName() + (swInfo.fMakeSFX ? EXE_EXT : (wxString) wxEmptyString));
+       wxFileDialog fd(this, swInfo.fMakeSFX ? wxT("Save as SFX") : wxT("Save as normal archive"), fnArchive.GetPath(), fnArchive.GetName() + (swInfo.fMakeSFX ? EXE_EXT : (wxString) wxEmptyString));
        fd.SetWindowStyleFlag(wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
        if (fd.ShowModal() == wxID_CANCEL)
        {