Line 0
Link Here
|
|
|
1 |
--- src/las_c_api.cpp.orig 2009-10-02 17:48:41 UTC |
2 |
+++ src/las_c_api.cpp |
3 |
@@ -745,7 +745,7 @@ LAS_DLL LASErrorEnum LASHeader_SetProjectId(LASHeaderH |
4 |
|
5 |
try { |
6 |
liblas::guid id; |
7 |
- id = liblas::guid::guid(value); |
8 |
+ id = liblas::guid(value); |
9 |
((LASHeader*) hHeader)->SetProjectId(id); |
10 |
} catch (std::exception const& e) |
11 |
{ |
12 |
@@ -1542,7 +1542,7 @@ LAS_DLL LASGuidH LASGuid_CreateFromString(const char* |
13 |
VALIDATE_LAS_POINTER1(string, "LASGuid_CreateFromString", NULL); |
14 |
liblas::guid id; |
15 |
try { |
16 |
- id = liblas::guid::guid(string); |
17 |
+ id = liblas::guid(string); |
18 |
return (LASGuidH) new liblas::guid(id); |
19 |
} |
20 |
catch (std::exception const& e) { |