]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/filedlgg.cpp
support undo patch applied
[wxWidgets.git] / src / generic / filedlgg.cpp
index 2bd623bd8ccdbc0026cd07ae126e4a06005c78f1..efc8f3e290faa06b245a2823fbe09c58b150fa40 100644 (file)
@@ -253,24 +253,25 @@ wxString wxFileData::GetHint() const
 {
     wxString s = m_filePath;
     s += wxT("  ");
+
     if (IsDir())
-        s += wxT("<DIR> ");
+        s += _("<DIR>");
     else if (IsLink())
-        s += wxT("<LINK> ");
+        s += _("<LINK>");
     else if (IsDrive())
+        s += _("<DRIVE>");
+    else // plain file
+        s += wxString::Format( _("%ld bytes"), m_size );
+
+    s += wxT(' ');
+
+    if ( !IsDrive() )
     {
-        s += wxT("<DRIVE> ");
-        return s;
-    }
-    else
-    {
-        s += wxString::Format( "%ld", m_size );
-        s += wxT(" bytes ");
+        s << GetModificationTime()
+          << wxT("  ")
+          << m_permissions;
     }
 
-    s += GetModificationTime();
-    s += wxT("  ");
-    s += m_permissions;
     return s;
 };