COIN-OR::LEMON - Graph Library

Ticket #214: f39f0a140247.patch

File f39f0a140247.patch, 1.7 KB (added by Alpar Juttner, 16 years ago)
  • lemon/graph_to_eps.h

    # HG changeset patch
    # User Janos Tapolcai <tapolcai@tmit.bme.hu>
    # Date 1234277019 -3600
    # Node ID f39f0a14024705e7d7829bc466ab7724e89aaffa
    # Parent  861a9d5ff283ec024491304718018dc4b7ed4b0b
    Compilation bug fixed in graph_to_eps.h with VS2005 (#214)
    
    diff --git a/lemon/graph_to_eps.h b/lemon/graph_to_eps.h
    a b  
    688688      os << "%%CreationDate: " << cbuf;
    689689#else
    690690      SYSTEMTIME time;
    691       char buf1[11], buf2[9], buf3[5];
    692 
    693691      GetSystemTime(&time);
     692#if defined(_MSC_VER) && (_MSC_VER < 1500)
     693      LPWSTR buf1, buf2, buf3;
    694694      if (GetDateFormat(LOCALE_USER_DEFAULT, 0, &time,
    695                         "ddd MMM dd", buf1, 11) &&
     695                        L"ddd MMM dd", buf1, 11) &&
    696696          GetTimeFormat(LOCALE_USER_DEFAULT, 0, &time,
    697                         "HH':'mm':'ss", buf2, 9) &&
     697                        L"HH':'mm':'ss", buf2, 9) &&
    698698          GetDateFormat(LOCALE_USER_DEFAULT, 0, &time,
    699                                 "yyyy", buf3, 5)) {
     699                        L"yyyy", buf3, 5)) {
    700700        os << "%%CreationDate: " << buf1 << ' '
    701701           << buf2 << ' ' << buf3 << std::endl;
    702702      }
     703#else
     704        char buf1[11], buf2[9], buf3[5];
     705        if (GetDateFormat(LOCALE_USER_DEFAULT, 0, &time,
     706                          "ddd MMM dd", buf1, 11) &&
     707            GetTimeFormat(LOCALE_USER_DEFAULT, 0, &time,
     708                          "HH':'mm':'ss", buf2, 9) &&
     709            GetDateFormat(LOCALE_USER_DEFAULT, 0, &time,
     710                          "yyyy", buf3, 5)) {
     711          os << "%%CreationDate: " << buf1 << ' '
     712             << buf2 << ' ' << buf3 << std::endl;
     713        }
     714#endif
    703715#endif
    704716    }
    705717