Changeset 123:698e70d0dca3
- Timestamp:
- 07/21/08 14:28:53
(4 months ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- branch:
- default
- Message:
Fix build for non-TANGOSVN
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r109 |
r123 |
|
| 46 | 46 | import tango.io.Stdout; |
|---|
| 47 | 47 | version(JIVE) import jive.stacktrace; |
|---|
| 48 | | |
|---|
| | 48 | version(TANGOSVN){ |
|---|
| | 49 | import tango.io.model.IFile; |
|---|
| | 50 | } |
|---|
| | 51 | else{ |
|---|
| | 52 | import tango.io.FileConst; |
|---|
| | 53 | } |
|---|
| 49 | 54 | class ClipboardExample { |
|---|
| 50 | 55 | static const int SIZE = 60; |
|---|
| … | … | |
| 298 | 303 | //copyFileTable.removeAll(); |
|---|
| 299 | 304 | //This cannot be used |
|---|
| | 305 | version(TANGOSVN){ |
|---|
| 300 | 306 | auto separator = tango.io.model.IFile.FileConst.PathSeparatorString; |
|---|
| | 307 | } |
|---|
| | 308 | else{ |
|---|
| | 309 | auto separator = tango.io.FileConst.FileConst.PathSeparatorString; |
|---|
| | 310 | } |
|---|
| 301 | 311 | auto path = dialog.getFilterPath(); |
|---|
| 302 | 312 | auto names = dialog.getFileNames(); |
|---|