-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
Qt Creator 17.0.1
-
None
After invoke Find in This Directory in below directory src, then Search and Replace text, result contains src/a/a.h and symbolic src/a/export/a.h, then do replace, src/a/a.h will be replaced twice due to other symbolic file src/a/export/a.h
├── CMakeLists.txt ├── include │ └── a -> ../src/a/export └── src ├── CMakeLists.txt ├── a │ ├── CMakeLists.txt │ ├── a.cpp │ ├── a.h │ └── export │ └── a.h -> ../a.h └── main ├── CMakeLists.txt └── main.cpp