projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
work around drag and drop freeze (bug 1080588)
[wxWidgets.git]
/
src
/
generic
/
filedlgg.cpp
diff --git
a/src/generic/filedlgg.cpp
b/src/generic/filedlgg.cpp
index e92a4ca990b41cda4afe06ed836e812ffc6afa34..f159065ef9cdace8d1a4a9079ec320d0a0b440ff 100644
(file)
--- a/
src/generic/filedlgg.cpp
+++ b/
src/generic/filedlgg.cpp
@@
-30,15
+30,15
@@
#include "wx/log.h"
#include "wx/msgdlg.h"
#include "wx/bmpbuttn.h"
#include "wx/log.h"
#include "wx/msgdlg.h"
#include "wx/bmpbuttn.h"
+ #include "wx/checkbox.h"
+ #include "wx/choice.h"
+ #include "wx/stattext.h"
+ #include "wx/textctrl.h"
+ #include "wx/sizer.h"
+ #include "wx/filedlg.h" // wxFD_OPEN, wxFD_SAVE...
#endif
#endif
-#include "wx/checkbox.h"
-#include "wx/textctrl.h"
-#include "wx/choice.h"
-#include "wx/checkbox.h"
-#include "wx/stattext.h"
#include "wx/longlong.h"
#include "wx/longlong.h"
-#include "wx/sizer.h"
#include "wx/tokenzr.h"
#include "wx/config.h"
#include "wx/imaglist.h"
#include "wx/tokenzr.h"
#include "wx/config.h"
#include "wx/imaglist.h"
@@
-46,7
+46,6
@@
#include "wx/artprov.h"
#include "wx/filefn.h"
#include "wx/file.h" // for wxS_IXXX constants only
#include "wx/artprov.h"
#include "wx/filefn.h"
#include "wx/file.h" // for wxS_IXXX constants only
-#include "wx/filedlg.h" // wxFD_OPEN, wxFD_SAVE...
#include "wx/generic/filedlgg.h"
#include "wx/generic/dirctrlg.h" // for wxFileIconsTable
#include "wx/generic/filedlgg.h"
#include "wx/generic/dirctrlg.h" // for wxFileIconsTable
@@
-356,7
+355,7
@@
wxString wxFileData::GetHint() const
else if (IsDrive())
s += _("<DRIVE>");
else // plain file
else if (IsDrive())
s += _("<DRIVE>");
else // plain file
- s += wxString::Format(
_("%ld bytes"
),
+ s += wxString::Format(
wxPLURAL("%ld byte", "%ld bytes", m_size
),
wxLongLong(m_size).ToString().c_str());
s += wxT(' ');
wxLongLong(m_size).ToString().c_str());
s += wxT(' ');
@@
-734,7
+733,7
@@
void wxFileCtrl::GoToParentDir()
{
if (!IsTopMostDir(m_dirName))
{
{
if (!IsTopMostDir(m_dirName))
{
- size_t len = m_dirName.
Len
();
+ size_t len = m_dirName.
length
();
if (wxEndsWithPathSeparator(m_dirName))
m_dirName.Remove( len-1, 1 );
wxString fname( wxFileNameFromPath(m_dirName) );
if (wxEndsWithPathSeparator(m_dirName))
m_dirName.Remove( len-1, 1 );
wxString fname( wxFileNameFromPath(m_dirName) );
@@
-822,8
+821,8
@@
void wxFileCtrl::OnListEndLabelEdit( wxListEvent &event )
wxASSERT( fd );
if ((event.GetLabel().empty()) ||
wxASSERT( fd );
if ((event.GetLabel().empty()) ||
- (event.GetLabel() ==
_
(".")) ||
- (event.GetLabel() ==
_
("..")) ||
+ (event.GetLabel() ==
wxT
(".")) ||
+ (event.GetLabel() ==
wxT
("..")) ||
(event.GetLabel().First( wxFILE_SEP_PATH ) != wxNOT_FOUND))
{
wxMessageDialog dialog(this, _("Illegal directory name."), _("Error"), wxOK | wxICON_ERROR );
(event.GetLabel().First( wxFILE_SEP_PATH ) != wxNOT_FOUND))
{
wxMessageDialog dialog(this, _("Illegal directory name."), _("Error"), wxOK | wxICON_ERROR );
@@
-1028,7
+1027,7
@@
bool wxGenericFileDialog::Create( wxWindow *parent,
m_dir = wxFILE_SEP_PATH;
}
m_dir = wxFILE_SEP_PATH;
}
- size_t len = m_dir.
Len
();
+ size_t len = m_dir.
length
();
if ((len > 1) && (wxEndsWithPathSeparator(m_dir)))
m_dir.Remove( len-1, 1 );
if ((len > 1) && (wxEndsWithPathSeparator(m_dir)))
m_dir.Remove( len-1, 1 );
@@
-1628,10
+1627,10
@@
void wxGenericFileDialog::UpdateControls()
#endif // defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
}
#endif // defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
}
-#ifdef USE_GENERIC_FILEDIALOG
+#ifdef
wx
USE_GENERIC_FILEDIALOG
IMPLEMENT_DYNAMIC_CLASS(wxFileDialog, wxGenericFileDialog)
IMPLEMENT_DYNAMIC_CLASS(wxFileDialog, wxGenericFileDialog)
-#endif // USE_GENERIC_FILEDIALOG
+#endif //
wx
USE_GENERIC_FILEDIALOG
#endif // wxUSE_FILEDLG
#endif // wxUSE_FILEDLG