mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-10 14:22:46 -06:00
ide: Topic fixes
git-svn-id: svn://ultimatepp.org/upp/trunk@11518 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
edc4fe41c6
commit
b7b236449f
2 changed files with 2 additions and 2 deletions
|
|
@ -247,7 +247,7 @@ struct StyleDlg;
|
|||
template <class T>
|
||||
struct TopicDlg : T {
|
||||
String GetName() const {
|
||||
return (String)~T::topic + "@" + ToLower(LNGAsText(~T::lang)) + ".tpp";
|
||||
return (String)~T::topic + "_" + ToLower(LNGAsText(~T::lang)) + ".tpp";
|
||||
}
|
||||
|
||||
TopicDlg(const char *title) {
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ void TopicEditor::ListTemplates(Vector<String>& path, Vector<String>& name)
|
|||
Vector<String> ud = GetUppDirs();
|
||||
for(int i = 0; i < ud.GetCount(); i++) {
|
||||
String nest = ud[i];
|
||||
String tmpl = AppendFileName(nest, "$.tpp");
|
||||
String tmpl = AppendFileName(nest, "_.tpp");
|
||||
FindFile ff(AppendFileName(tmpl, "*.tpp"));
|
||||
while(ff) {
|
||||
if(ff.IsFile()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue