]> git.saurik.com Git - wxWidgets.git/blobdiff - user/wxLayout/wxlparser.h
minor bug fix
[wxWidgets.git] / user / wxLayout / wxlparser.h
index 2ccb5eeba8d7915b1e251b1b96ecba5a76c710e3..571a8749d972ed943abeead99e52affbb7ab0bd4 100644 (file)
@@ -52,21 +52,15 @@ struct wxLayoutExportObject
       }
 };
 
+
 struct wxLayoutExportStatus
 {
-   wxLayoutExportStatus(wxLayoutList *list)
-      {
-         list->GetDefaults()->GetStyle(&m_si);
-         m_line = list->GetFirstLine();
-         m_iterator = m_line->GetFirstObject();
-      }
-   
+   wxLayoutExportStatus(wxLayoutList *list);
    wxLayoutLine      * m_line;
    wxLOiterator        m_iterator;
    wxLayoutStyleInfo   m_si;
 };
 
-
 #ifdef OS_WIN
 /// import text into a wxLayoutList (including linefeeds):
 void wxLayoutImportText(wxLayoutList *list, wxString const &str,
@@ -74,7 +68,8 @@ void wxLayoutImportText(wxLayoutList *list, wxString const &str,
 
 wxLayoutExportObject *wxLayoutExport(wxLayoutExportStatus *status,
                                      int mode = WXLO_EXPORT_AS_TEXT,
-                                     int flags = WXLO_EXPORT_WITH_CRLF); 
+                                     int flags =
+                                     WXLO_EXPORT_WITH_CRLF); 
 #else
 /// import text into a wxLayoutList (including linefeeds):
 void wxLayoutImportText(wxLayoutList *list, wxString const &str,
@@ -83,8 +78,8 @@ void wxLayoutImportText(wxLayoutList *list, wxString const &str,
 /// export text in a given format
 wxLayoutExportObject *wxLayoutExport(wxLayoutExportStatus *status,
                                      int mode = WXLO_EXPORT_AS_TEXT,
-                                     int flags = WXLO_EXPORT_WITH_LF_ONLY
-                                     );
+                                     int flags =
+                                     WXLO_EXPORT_WITH_LF_ONLY);
 #endif
 
 #endif //WXLPARSER_H