Talk:Development/Tutorials/Using KActions: Difference between revisions

From KDE TechBase
No edit summary
 
No edit summary
Line 3: Line 3:


I fixed it by using this instead:
I fixed it by using this instead:
----


<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
Line 17: Line 19:
   </MenuBar>
   </MenuBar>
</kpartgui>
</kpartgui>
---


I'm not shure why.
I'm not shure why.

Revision as of 14:05, 18 March 2007

2007/3/18: The .ui file isn't working with trunk from svn

I fixed it by using this instead:


<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd"> <kpartgui version="2" name="tutorial3"> <ToolBar name="mainToolBar" >

   <text>Main Toolbar</text>
   <Action name="clear" />
 </ToolBar>
 <MenuBar>
   <Menu name="file" >
     <text>&File</text>
     <Action name="clear" />
   </Menu>
 </MenuBar>

</kpartgui>

---

I'm not shure why. Should this be added to the tutorial?

-- Jonarne